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开发者_如何学Python time a day)?
wget
PowerShell:
PS Home:\> $wc = New-Object Net.WebClient
PS Home:\> $wc.DownloadFile( ... )
You can use the Task Scheduler to run it in specified intervals.
Curl
Yes, but you need to try and post any problems you run across. http://msdn.microsoft.com/en-us/library/system.web.httprequest.aspx
精彩评论