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.
Try WinSCP (see CLI docs ) or NcFTP
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-
"parameters"
.bat