Skip to main content

Interactively transfer files between a local and remote FTP server from the Windows command-line.

:: To connect to a remote FTP server interactively:
ftp <host>

:: To log in as an anonymous user:
ftp -A <host>

:: To disable automatic login upon initial connection:
ftp -n <host>

:: To run a file containing a list of FTP commands:
ftp -s:<path/to/file> <host>

:: To download multiple files (glob expression):
mget <*.png>

:: To upload multiple files (glob expression):
mput <*.zip>

:: To delete multiple files on the remote server:
mdelete <*.txt>

:: To display detailed help:
ftp --help