automatically download files from website?

x_kzy_xd

Member
Jun 30, 2011
57
0
66
I want to download a bunch of files from a website. They are named in the following manner:

xyz.com/yyyy/mm/yyyymmdd.jpge

for example,
xyz.com/2015/11/20151115.jpg


can I automate this?
 

Mushkins

Golden Member
Feb 11, 2013
1,631
0
0
Depends on your definition of "automate." Are you looking to do this once, or something like "Download this whole directory every Tuesday afternoon at 3:32pm?"

If it's just a one off thing, I second lxskllr's recommendation of DownThemAll. I've used it to do exactly this on many occasions.
 

Ken g6

Programming Moderator, Elite Member
Moderator
Dec 11, 1999
16,569
4,484
75
For /L may also interest you. Especially considering you can nest them. E.g.

Code:
for /L %y in (2000,1,2015) do for /L %m in (1,1,12) do for /L %d in (1,1,31) do echo One day is %m/%d/%y

Use "%%" if in a batch file. You should be able to find some way to integrate this with wget. ;)