我想下载网页上的所有文件夹及其子文件夹和文件,但不包括该网站子文件夹中包含的文件夹。如何使用 wget 执行此操作?例如:
文件夹1:
-子文件夹1
-子文件夹2
-子文件夹3
文件夹2:
-子文件夹4
我怎样才能下载 Folder1 中除 Subfolder1 的所有文件和子文件夹之外的所有文件和子文件夹?
答案1
来自 wget --help:
-X, --exclude-directories=LIST list of excluded directories.
未经测试,但现在提供以便尽快为您提供答案:
wget -r -X http://example.com/Folder1/subfolder1 http://example.com/