Download every zip files from a website
Moderator: Moderators
Download every zip files from a website
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
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
free download manager fails, flashget looks like a spyware and probably fails too
- Forboding Angel
- Evolution RTS Developer
- Posts: 14673
- Joined: 17 Nov 2005, 02:43
Re: Download every zip files from a website
Flashget works quite well for that. Also, downloadthemall would prolly do it.
Re: Download every zip files from a website
well I finaly got what I needed with WinHTTrack, had to enable few options
Re: Download every zip files from a website
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.
i would use bonzi buddy instead.
Re: Download every zip files from a website
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)
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)
