Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using wget to download all images from a website and it works fine but it stores the original heirarchy of the site with all the subfolders and so the images are dotted around. Is there a way so that it will just download all the images into a single folder? The syntax I'm using at the moment is:

wget -r -A jpeg,jpg,bmp,gif,png http://www.domain.com
share|improve this question

5 Answers

up vote 36 down vote accepted

Try this:

wget -r -P /save/location -A jpeg,jpg,bmp,gif,png http://www.domain.com
share|improve this answer
This didn't actually work for me. My save location was "." and it copied the whole site hierarchy there. – Buttle Butkus Dec 7 '12 at 9:57
@ButtleButkus It sounds like you need mess around a bit more with the accept -A option, see the Wget documentation about types of files. Also, if you're downloading to the current directory, you can remove the directory prefix -P option. If you're downloading a single file type, such as only jpg's, use something like wget -r -A.jpg http://www.domain.com. Look at the advanced examples that the Wget documentation provides. – Jon Dec 8 '12 at 0:29
wget -nd -r -l 2 -A jpg,jpeg,png,gif http://t.co
  • -nd: no directories (save all files to the current directory; -P directory changes the target directory)
  • -r -l 2: recursive level 2
  • -A: accepted extensions
wget -nd -H -p -A jpg,jpeg,png,gif -e robots=off example.tumblr.com/page/{1..2}
  • -H: span hosts (wget doesn't download files from different domains or subdomains by default)
  • -p: page requisites (includes resources like images on each page)
share|improve this answer
+1 for the explanation – Shoan Feb 4 at 8:36

Try this one:

`wget -nd -r -P /save/location/ -A jpeg,jpg,bmp,gif,png http://www.domain.com`

and wait until it deletes all extra information

share|improve this answer

According to the man page the -P flag is:

-P prefix --directory-prefix=prefix Set directory prefix to prefix. The directory prefix is the directory where all other files and subdirectories will be saved to, i.e. the top of the retrieval tree. The default is . (the current directory).

This mean that it only specifies the destination but where to save the directory tree. It does not flatten the tree into just one directory. As mentioned before the -nd flag actually does that.

@Jon in the future it would be beneficial to describe what the flag does so we understand how something works.

share|improve this answer

I wrote a shellscript that solves this problem for multiple websites: https://github.com/eduardschaeli/wget-image-scraper

(Scrapes images from a list of urls with wget)

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.