Move Torrent to New Location
transmission_move_torrentRelocate torrent data files to a new directory. Optionally, update the torrent's path without moving the actual files.
Instructions
Move torrent data files to a new location on disk.
This tool relocates torrent files to a different directory. By default, it moves the files physically. Set move=false to just update the path if files are already at the new location.
Args:
ids (number | number[] | 'all'): Torrent ID(s) to move
location (string): Destination directory path
move (boolean): If true, move files; if false, just update location (default: true)
response_format ('markdown' | 'json'): Output format (default: 'markdown')
Returns: Confirmation that move operation was initiated
Examples:
Use when: "Move torrent 5 to /downloads/completed"
Use when: "Change location of all torrents to /media/storage" -> params with ids='all'
Use when: "Update path for torrent 3 (files already moved)" -> params with move=false
Error Handling:
Returns error if destination path doesn't exist
Returns error if insufficient permissions
Move operation may take time for large files
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ids | Yes | Torrent ID(s) to operate on - can be a single ID, array of IDs, or 'all' | |
| move | No | If true, move from previous location; if false, search new location for files | |
| location | Yes | New location path for the torrent data | |
| response_format | No | Output format: 'markdown' for human-readable or 'json' for machine-readable | markdown |