Wgetを使用してサブディレクトリのみをダウンロードするにはどうすればよいですか?ダウンロードする必要があるサブディレクトリを指定できますか?
ありがとう!
できるよ:
wget -r -l1 --no-parent http://www.domain.com/subdirectory/
ここで:
-r: recursive retrieving
-l1: sets the maximum recursion depth to be 1
--no-parent: does not ascend to the parent; only downloads from the specified subdirectory and downwards hierarchy
$ wget -m -p -E -k -K -np {URL Address}
オプションの詳細については、manページを使用できます。
注:以前のオプションでは、ファイルのインデックスがダウンロードされます!
使用できた良い情報。私は試した:
wget -r -l1 --no-parent http://www.domain.com/subdirectory/
name.subname.subname2.etc.htmまたは.htmlの形式の複数のファイルを含むサイト上。これらを拾うために走りました:
wget -r --no-parent http://www.domain.com/subdirectory/
これはうまくいきました。