FTP client command line mail directory

Is there a command line FTP client where you can download the whole directory?

Or does anyone know how to make a bat file that uses the Windows ftp client to load the directory?

Any thing would be helpful, thanks.

+5
source share
2 answers

Try WinSCP (see CLI docs ) or NcFTP

+4
source

Here you can do it in a batch file:

@ftp -i -s:"%~f0"&GOTO:EOF
open ftp.host.com
username
password
folder
mput "*.*"
disconnect
bye

"parameters" (ftp.host.com, , , ) .bat ftp-

+3

All Articles