-
|
Hi everyone, My configuration:
How can I assign the category "Music" for all new torrents from "/Torrent-Music" location? Thanks, |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
|
In the WebUI, I don't think there is a per-watched-folder category/force-start control. The current WebUI watched-folder table only exposes the monitored path and an optional save-path override. The underlying watcher can store the full add-torrent parameters, though. Workaround: stop qBittorrent, edit {
"/Torrent-Music": {
"add_torrent_params": {
"category": "Music",
"operating_mode": "Forced",
"stopped": false
},
"recursive": false
}
}If you also need a save-path override for that watched folder, add A couple of caveats: edit the file while qBittorrent is stopped, because it rewrites its config on shutdown; and this only affects torrents added after the change. In Docker, the file is under the mounted qBittorrent config/profile directory, but the exact path depends on the image you use. |
Beta Was this translation helpful? Give feedback.

In the WebUI, I don't think there is a per-watched-folder category/force-start control. The current WebUI watched-folder table only exposes the monitored path and an optional save-path override.
The underlying watcher can store the full add-torrent parameters, though. Workaround: stop qBittorrent, edit
watched_folders.jsonin the qBittorrent profile/config directory, then start it again. For your music folder the entry would be along these lines:{ "/Torrent-Music": { "add_torrent_params": { "category": "Music", "operating_mode": "Forced", "stopped": false }, "recursive": false } }If you also need a save-path override for that watched folder, add
"save_p…