回答:
ターゲット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/