How to download a bulk of images from a list with their url?

2

I would like to download a list of png images. I have the url in a table (excel). How could I do this?

CabCon

Posted 2018-05-03T13:27:16.543

Reputation: 21

Question was closed 2018-06-01T18:56:42.267

5What did you try? You even tagged it "Download-Manager" did you try to use one? – Seth – 2018-05-03T13:29:17.107

I'm looking for one. Do you know any how can name the downloaded file based on another cell? – CabCon – 2018-05-03T13:49:21.583

1You could use a for loop with wget to download all images from a plain text file/list. If it needs to be a excel table, there may be a way to do it via VBA. – jnL – 2018-05-03T13:56:03.793

2@jnL Definitely possible with VBA, however OP has not tried anything yet – Eric F – 2018-05-03T14:13:50.607

1wget -i file-with-urls.txt (i.e. notepad text that is) – Hannu – 2018-05-03T18:18:55.847

@Hannu Thanks. Do you know how I can modify the name of the downloaded file? Because I have a list with URLs and foreach url a name, how I would like to name the file. – CabCon – 2018-05-03T19:06:20.923

Have a look on the text displayed by man wget - or; google it if you don't have man-pages. – Hannu – 2018-05-03T19:33:43.467

Answers

0

Try Tab Save. It's a chrome extension. You can know more about it here. Also, if you want to know other alternatives, refer this SuperUser Question.

DxTx

Posted 2018-05-03T13:27:16.543

Reputation: 762