delete_torrent
Remove torrents from qBittorrent client with option to delete associated downloaded files, freeing up storage space and managing download queue.
Instructions
Delete a torrent from qBittorrent.
Args: torrent_hash: Hash of the torrent to delete delete_files: Also delete downloaded files (default: False)
Returns: Status message
Input Schema
Name | Required | Description | Default |
---|---|---|---|
delete_files | No | ||
torrent_hash | Yes |
Input Schema (JSON Schema)
{
"properties": {
"delete_files": {
"default": false,
"type": "boolean"
},
"torrent_hash": {
"type": "string"
}
},
"required": [
"torrent_hash"
],
"type": "object"
}