Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Batch file to download files?
Name: uberstronzo Date: March 5, 2006 at 20:58:04 Pacific OS: winxp CPU/Ram: athlon xp 736mb
Comment:
is it possible to make a batch file to download and replace files? here is a line from one i tried but it said HTTP was not a recognised device
Summary: I actually got something working that will do just fine. @ECHO OFF FOR %%V IN (*.msg) DO FOR /F "tokens=1-5 delims=/: " %%J IN ("%%~tV") DO IF EXIST %%L%%J%%K_%%M%%N%%~xV (ECHO Cannot rename %%V) ELSE...
Summary: What is it that you are trying to do? Are you trying to make an install program? Then yes you could do it with Batch Scripting but this would be very painful. I recommend using an Open Source installe...
Summary: I have to download files from unix ftp server to a local directory as and when it is uploaded by my friend. Is there a way I can write MS-DOS batch file to synchronize a folder in the FTP server to a...