Is there an API command that can be used to rename a file within a torrent?
The feature to allow the WebUI to rename files within a torrent was discussed in #8892 and was implemented in #11029.
These changes were implemented using the api/v2/torrents/renameFile API command as seen below:
|
new Request({ |
|
url: 'api/v2/torrents/renameFile', |
|
method: 'post', |
|
data: { |
|
hash: hash, |
|
id: id, |
|
name: newName |
|
}, |
I could not find any documentation for this renameFile command in the Web API Documentation.
Is there an API command that can be used to rename a file within a torrent?
The feature to allow the WebUI to rename files within a torrent was discussed in #8892 and was implemented in #11029.
These changes were implemented using the
api/v2/torrents/renameFileAPI command as seen below:qBittorrent/src/webui/www/private/rename_file.html
Lines 59 to 66 in a652c39
I could not find any documentation for this
renameFilecommand in the Web API Documentation.