Readers like you help support MUO. When you make a purchase using links on our site, we may earn an affiliate commission. Read More.

I have asked this question before, but left out an important detail.

I have a text file which has thousands of image URLs. Each URL has a name next to it. Is there a software that can download the images based on the URLs listed in the text file and name the image with the name specified next to the URL in the text file?

John
2011-09-15 03:10:00
I afraid that i don't understand what you mean. Can you explain in more details.
James Bruce
2011-09-15 09:43:00
MAKEUSEOF VIDEO OF THE DAY
SCROLL TO CONTINUE WITH CONTENT
If you're willing to learn PHP, you can do this very easily. 
2011-09-11 10:00:00
Picaloaderhttp://www.vowsoft.com/Free Download Managerhttp://www.freedownloadmanager.org/download.htmDownThem Allhttp://www.softpedia.com/get/Internet/Internet-Applications-Addons/Mozilla-Extensions/DownThemAll.shtmlhttp://www.downthemall.net/howto/help/english-menu/batch-downloadsbatch-descriptors/
James Bruce
2011-09-12 08:21:00
I'm pretty sure those won't attach the filename he wants - he actually wants to download + rename them.John, if you're not afraid of a little programming then you could knock this up in PHP in less than an hour:1. Read in your file list and place in an associative array,2. Iterate over the list, use CURL to grab the file3. Read the second part of the array and rename that file to the name specified4. Save it, and go on to the next one.