我已经在单个目录下使用rtorrent一段时间了。现在我发现可以使用不同的目录,甚至可以将已完成的下载移动到其他位置,因此根据rtorrent Wiki,我对.rtorrent.rc进行了如下编辑:
# Download directory
directory = /Medias/torrents/
# Watching directories
schedule = watch_directory_1,5,60,"load_start=/path/to/dl/dir1/*.torrent,d.set_custom1=/path/to/done/dir1"
schedule = watch_directory_2,5,60,"load_start=/path/to/dl/dir2/*.torrent,d.set_custom1=/path/to/done/dir2"
# On completion, move the torrent to the directory from custom1.
system.method.set_key = event.download.finished,move_complete,"d.set_directory=$d.get_custom1= ;execute=mv,-u,$d.get_base_path=,$d.get_custom1="
它似乎适用于新的洪流。但是,我有一堆已经完整下载的文件,这些文件在拆分目录之前已经下载了,对于它们来说,它是行不通的:如果我在会话目录中删除其文件,rtorrent将检查哈希值,但不会移动它们,如果我自己移动它们,rtorrent将看不到它们,并将尝试重新下载它们。
那么,如何告诉rtorrent将其移动或将其放在另一个目录中?
谢谢。