K
K
kostya_mamanjvitch2019-02-15 16:50:07
Parsing
kostya_mamanjvitch, 2019-02-15 16:50:07

How to download a large number of photos with links to them?

There is a file with links (photos), about 4k. Do they all need to be downloaded? Manually this is generally nonsense) How to automate the process?

Answer the question

In order to leave comments, you need to log in

3 answer(s)
T
Talyan, 2019-02-15
@flapflapjack

Loading all URLs specified in the FILE file:
$ wget -i FILE

M
Michael, 2019-02-15
@nyakove

For example, using the download module

const download = require('download');

Promise.all([
//массив ссылок
].map(x => download(x, 'dist'))).then(() => {
    console.log('files downloaded!');
});

I
Ivan, 2019-02-15
@iZnatOk

You can use the Download Master program. Upload a list of links there, and he will download them again. If you download something a lot, then you can even set a speed limit for it so that it does not hang up the Internet for you.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question