Page 1 of 1
Download every zip files from a website
Posted: 14 Jan 2011, 22:03
by Satirik
I need a software to download every zip files from a website, parsing html and php generated html to get the zip (or whatever i want) files.
Re: Download every zip files from a website
Posted: 14 Jan 2011, 23:00
by SinbadEV
Flash Get or Free Download Manager should be able to do so but I'm not sure.
Re: Download every zip files from a website
Posted: 14 Jan 2011, 23:28
by Satirik
free download manager fails, flashget looks like a spyware and probably fails too
Re: Download every zip files from a website
Posted: 14 Jan 2011, 23:40
by Forboding Angel
Flashget works quite well for that. Also, downloadthemall would prolly do it.
Re: Download every zip files from a website
Posted: 15 Jan 2011, 02:33
by Satirik
well I finaly got what I needed with WinHTTrack, had to enable few options
Re: Download every zip files from a website
Posted: 15 Jan 2011, 12:36
by knorke
From what Ive seen on other PCs, at least some FlashGet versions come with a bunch of adware crap.
i would use bonzi buddy instead.
Re: Download every zip files from a website
Posted: 15 Jan 2011, 15:32
by aegis
wget -r -A.zip
http://url
can also do
wget -r -nd -np -A.zip
http://url
nd tells it to not create subdirectories for each deeper it recurses
and np tells it to not go any higher than url (so
http://springrts.com/dl/ wouldn't go up to
http://springrts.com/ during recursion, only deeper)