FTP Download Script
Moderator: DosItHelp
FTP Download Script
Hi, I need a automated batch script to download files from server and call another batch file "av.bat".
Re: FTP Download Script
Does this help? Much of it was recently posted here.
Code: Select all
@echo off
set "ftpScript=%temp%\%~nx0.ftp.tmp"
(
echo open (ftp server name)
echo (ftp user-name)
echo (ftp password)
echo prompt
echo bin
echo mget *.*
echo quit
) > "%ftpScript%"
ftp -s:"%ftpScript%"
del "%ftpScript%"
call av.bat
Re: FTP Download Script
Thanks for the script. One more thing ftp resume option has been enabled on server side, but how can i integrate ftp resume option in mentioned script.
Re: FTP Download Script
Windows FTP command does not support resume.