I have a list of about 6,000 direct links to images in an excel sheet, and I need to download them all automatically onto my computer into a directory keeping the same file names. How do I do this? Thanks.

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted
  • put them in a txt file
  • download wget to that directory where you want them
  • wget -i my_links.txt

If it doesn't work, give here the error.

link|improve this answer
I receive an error in the command prompt. 'wget' is not recognized as an internal or external command, operable program or batch file. – Nathaniel Hirschler Nov 8 '11 at 23:50
Did you do the second step above - you'll have to get wget.exe out of the zip you downloaded. – Paul Nov 8 '11 at 23:55
Complete package, except sources? – Nathaniel Hirschler Nov 8 '11 at 23:58
Okay. Figured that out. Now I'm getting something else. "Invalid URL : Unsupported scheme" – Nathaniel Hirschler Nov 9 '11 at 0:08
@NathanielHirschler - For you to be able to start wget from any directory, you would have to put it into a PATH env. variable. Since you need wget for this one time only, I thought it would be easier to skip that path, therefore putting wget directly into the target directory. Forget the link I gave. Here is another quadlasers.com/wp/?p=423 ... download the .rar package (click on the white "thing") and open it. You will get lots of files from the archive, but you need only wget.exe ... after you have it proceed as desribed. – ldigas Nov 9 '11 at 0:09
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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