Search found 4 matches
- 08 Jul 2010 17:25
- Forum: DOS Batch Forum
- Topic: New to batch files, need to automate ftp download.
- Replies: 7
- Views: 7224
Re: New to batch files, need to automate ftp download.
So if I type in ftp:username:password@ftp.site.com in my browser, it takes me directly to the place I need to download the file. Are you saying that instead of using the open ftp.site.com command, I need to do something like this? @echo off &setlocal for /f "tokens=2-4 delims=/ " %%a i...
- 08 Jul 2010 15:00
- Forum: DOS Batch Forum
- Topic: New to batch files, need to automate ftp download.
- Replies: 7
- Views: 7224
Re: New to batch files, need to automate ftp download.
It says unknown host..
I use the same path in IE and it works, but if I try it through this it doesn't recognize it. Any suggestions?
I use the same path in IE and it works, but if I try it through this it doesn't recognize it. Any suggestions?
- 08 Jul 2010 12:05
- Forum: DOS Batch Forum
- Topic: New to batch files, need to automate ftp download.
- Replies: 7
- Views: 7224
Re: New to batch files, need to automate ftp download.
ECHO %date% gives me DayOfWeek(Three letters) mm/dd/yyyy. Thanks. Also I had checked out that link and is where I came up with the model I am working with. open example.com username password !:--- FTP commands below here --- lcd I:\ImportantFiles\Brandon mget "{Filename}*" disconnect bye I...
- 02 Jul 2010 15:56
- Forum: DOS Batch Forum
- Topic: New to batch files, need to automate ftp download.
- Replies: 7
- Views: 7224
New to batch files, need to automate ftp download.
I have been assigned a task to automate an ftp download each morning. The file name stays the same except for a date suffix that is appended on the end of it. I have the username and password and ftp site, but nothing I've found seems to allow me to connect. I've written one batch files to synchroni...