나는 하나의 디렉토리로 잠시 동안 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는 그들을 보지 않고 그들을 redownload하려고 시도 할 것이다.
그렇다면 어떻게 rtorrent를 이동 시키거나 다른 디렉토리에 있다고 말할 수 있습니까?
감사.