如何保持与aria2目录结构?

我需要同时下载文件 – wget不支持,所以我想尝试aria2。 但是我没有在aria2中看到保留目录结构的选项。

首先确定目录结构,然后构建并使用下载描述文件:

aria2c -i uri.txt 

uri.txt可能包含的内容

 http://serverA/file1.iso http://mirror-serverB/file1.iso # parameters must begin with a space, otherwise it's treatened as url! dir=/downloads/a # not mandatory out=file1.iso http://serverA/file2.iso http://mirror-serverB/file2.iso dir=/downloads/b out=file2.iso 

请记住,aria2是一个下载实用程序 – 不是同步实用程序,如rsync或lftp。

引用rsync答案: https : lftplftp答案: https : //superuser.com/a/305236 。