downloads.freemdict.com能像FTP那样子下载文件夹么?

downloads.freemdict.com上的文件,如果是文件夹的话,怎么整个文件夹下载呢?现在貌似只能一个一个的下载文件。

可以用 IDM 的整站下载,也可以用 wget -r

这个还是没有用FTP方便

刚好用到,参考(注意加 -np参数):

如何使用 wget 下载一个目录下的所有文件

wget -r -np -nH -R index.html http://url/including/files/you/want/to/download/

各个参数的含义:

-r : 遍历所有子目录
-np : 不到上一层子目录去
-nH : 不要将文件保存到主机名文件夹
-R index.html : 不下载 index.html 文件

1 Like