views:

40

answers:

4

Hello, does it exists a Software/Batch/Something for Windows OS that could access the web and download a file (like a xml) in a specified folder, recursively in time (like 1 time a day)?

+2  A: 

wget

marapet
A: 

Yes, but you need to try and post any problems you run across. http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx

Dustin Laine
+1  A: 

Curl

marapet
A: 

PowerShell:

PS Home:\> $wc = New-Object Net.WebClient
PS Home:\> $wc.DownloadFile( ... )

You can use the Task Scheduler to run it in specified intervals.

Joey