Cannot download directory
I am using wget to download the images which are contained here but when i do this I just get the index file downloaded? How do I get the entire directory downloaded as a folder on my machine?
btw I use wget -np -r URL
to d开发者_如何学Goo this
If I understood correctly you should use the -m option, this way: wget -m http://yourwebsite.com
.
I tried with your host and I see there's a robots.txt file that disallow wget to download.
So the right command for you should be the following: wget -m -e robots=off http://yourwebsite.com
精彩评论