Multiple files download

htabove

New Member
Hi, I have the following problem:
I want to download 20000 text files, each of them is located on the following page:

www.something.com/show.aspx?id=nnn (where nnn goes from 1 to 20000)

and each such page contains a link to the text file, which, when hovered mouse over it shows:

www.something.com/get.aspx?id=nnn (where nnn goes from 1 to 20000)

How do I automate download of all 20000 files? Right now, I have to go to each page, click each link, and download 20000 files one by one.

Many thanks for your help in advance.
 

jnjc

New Member
Are you familiar with/have access to PHP ?

If so look at writing a small program using stream_get_contents() inside a loop to do what you need.

HTH,
JC
 

htabove

New Member
Are you familiar with/have access to PHP ?

If so look at writing a small program using stream_get_contents() inside a loop to do what you need.

HTH,
JC

I'm sorry, I'm a total newbie when it comes to anything related to web. I am just a user of IE7, and would like some help. This way, one by one, I need 3-4 hours to download all files.
I need somebody else to show me what to do, and with what programs to write such a program. Thanks!
 
Top