• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

automatically download files from website?

x_kzy_xd

Member
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?
 
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.
 
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. 😉
 
Back
Top