FileRenameFailedAlert
data class FileRenameFailedAlert(val torrentName: String?, val index: Int, val errorMessage: String) : TorrentAlert
Posted in response to rename_file() when the rename fails. Ported from libtorrent::file_rename_failed_alert (alert_type 8).
libtorrent renders <name>: failed to rename file <index>: <errorMessage>.
Properties
Link copied to clipboard
The bitmask of AlertCategory flags this alert belongs to. Mirrors alert::category(), which returns the concrete alert's static_category.
Link copied to clipboard
the filesystem error description.
Link copied to clipboard
the torrent's name, or null when the handle would be invalid (rendered as " - ", matching libtorrent).