Answers:
如果目标Web服务器已启用目录索引,并且所有要下载的文件都位于同一目录中,则可以使用wget的递归检索选项下载所有文件。
采用
wget -r -l1 -A.jpg http://www.example.com/test/
它将.jpg
从目录下载所有文件test
。
如果您不想下载所有文件,则下面的信息会有所帮助。
-A acclist --accept acclist
-R rejlist --reject rejlist
Specify comma-separated lists of file name suffixes or patterns to
accept or reject. Note that if any of the wildcard characters, *, ?,
[ or ], appear in an element of acclist or rejlist, it will be
treated as a pattern, rather than a suffix.
--accept-regex urlregex
--reject-regex urlregex
Specify a regular expression to accept or reject the complete URL.
喜欢 :
wget -r --no-parent -A '*.jpg' http://example.com/test/