- How do I use FTP from a command line?
- Connect using FTP
- Send and receive a file in FTP
- FTP commands
- Список FTP-команд для командной строки Windows
- Команды FTP для командной строки Windows
- FTP команды для Windows
- FTP параметры командной строки для Windows
- Command line FTP client in Windows
- Windows ftp client command line commands
- List of FTP commands for the Microsoft command-line FTP client
- Command-line options
- Client commands
- append
- ascii
- binary
- close
- debug
- delete
- disconnect
- literal
- mdelete
- mkdir
- prompt
- quote
- remotehelp
- rename
- rmdir
- status
- trace
How do I use FTP from a command line?
To connect to and use FTP from a command line interface, like MS-DOS or the Linux shell, click a link below for instructions.
FTP is not an encrypted transmission, which means any data sent over it, including your username and password, could be read by anyone intercepting your transmission. If you want a more secure transmission, we suggest using SFTP.
Connect using FTP
To connect to another computer using FTP at the MS-DOS prompt, command line, or Linux shell, type FTP, and press Enter . Once in FTP, use the open command to connect to the FTP server, as shown in the following example.
In the example above, you’d substitute example.com for the domain name or IP address of where you are connecting. An example would be open 192.168.1.12.
By default, the open command uses the TCP port 21 to make the FTP connection. If a different TCP port is needed to connect, enter the port number after the domain name or IP address in the open command.
Once connected, a username and password prompt appears. Once these credentials are entered, the server allows you to browse, send, or receive files, depending on your rights. Some servers may also allow anonymous logins using guest or an e-mail address.
Send and receive a file in FTP
To get files from the server onto your computer, use the get command, as shown in the following example. In this example, you would get the file myfile.htm.
If you want to get more than one file, use mget and wildcards. For example, if you wanted to get all files that end with .htm, you could type mget *.htm. Finally, if you do not want to be prompted as each file is being sent, make sure to type prompt to disable prompting.
Use the send command, as shown in the following example, to move a file to another connected computer. In this example, we are sending the myfile.htm to the current directory.
It is important to realize that the files being sent must be in your local working directory. In other words, the directory you were in when you typed the FTP command. If you want to change to the local directory containing your files, use the lcd command. For example, in Windows, you’d type lcd c:\windows to set the local directory to the Windows directory.
FTP commands
Depending on the version of FTP and the operating system, each of the following commands may or may not work. Typing -help or a ? lists the commands available to you. Below is a general description of FTP commands available in the Windows command line FTP command.
Список FTP-команд для командной строки Windows
FTP команды предназначены для обмена файлами между компьютерами в частной сети или через интернет.
Существует три способа, с помощью которых можно получить доступ к FTP :
- FTP-клиенты командной строки.
- Браузер.
- Графические FTP-клиенты .
Первые два — это простые средства, которые позволяют использовать браузер или клиентское приложение FTP — (например, FTP Voyager ) для подключения к FTP-серверу для обмена файлами. Используя интерфейс командной строки, нужно ввести набор команд для отправки или получения файлов с других компьютеров.
Операционные системы Windows , Macintosh X и Linux имеют встроенные клиенты командной строки, которые могут быть использованы для установления FTP-соединения . Чтобы инициировать соединение в Windows , введите в CMD команды FTP и нажмите Enter .
Команды FTP для командной строки Windows
Команда | Описание |
! | Эта команда служит для перехода между операционной системой и FTP. Для возврата из операционной системы к командной строке FTP используется команда exit. |
? | Отображение справки для команды. |
append | Добавление текста в локальный файл. |
ascii | Переключение в ASCII режим передачи данных. |
bell | Включает/отключает режим подачи звукового сигнала. |
binary | Установка режима передачи двоичных файлов. |
bye | Выход из FTP. |
cd | Смена текущего каталога. |
close | Выход из FTP. |
delete | Удаление файла. |
debug | Включает/отключает отладочный режим. |
dir | Выводит список файлов. |
dir -C = выводит файлы в расширенном формате.
dir -1 = выводит список файлов в алфавитном порядке.
dir -r = выводит список каталогов в обратном алфавитном порядке.
dir -R = выводит список всех файлов в текущем каталоге и подкаталогах.
dir -S = выводит список файлов в алфавитном порядке.
FTP команды для Windows
FTP параметры для командной строки Windows
Параметры CMD используются для изменения работы команд FTP . Параметр командной строки обычно следует за основной командой FTP через пробел. Вот список часто используемых параметров командной строки FTP для Windows® :
Параметр командной строки | Описание |
-v | Отключение вывода на экран ответов с удаленного сервера. |
-n | Отключение автоматического входа при начальном подключении. |
-i | Отключение интерактивных запросов при передаче нескольких |
файлов.
будут выполняться автоматически при запуске FTP. Пробелы в этом параметре не допускаются. Используйте этот параметр вместо перенаправления (>).
FTP параметры командной строки для Windows
Консольный FTP-клиент , встроенный в Windows и Mac OS X — это надежный инструмент для тестирования, поиска и устранения неисправностей. Изучение приведенных выше cmd ftp команд поможет вам обмениваться файлами между компьютерами без установки дополнительного программного обеспечения.
FTP не является надежным способом обмена конфиденциальной информацией. Из-за ограничений этого протокола организации, как правило, используют для передачи файлов протоколы FTPS и SFTP . Технология управляемой передачи файлов ( MFT ) поддерживает эти протоколы безопасности.
Command line FTP client in Windows
Windows has native ftp client which can be used to connect to any ftp servers with in LAN or outside LAN. Below you can learn how to use this command. You can also see examples for each command. This command works on all Windows releases : XP, Vista and Windows 7.
Connect to a ftp server
ftpВ connectВ hostname_or_ip
You will be prompted for user name and password to verify if you have access to the ftp server. Some servers provide anonymous access.
How to download files after connecting to ftp server
Once you are connected to the server you can use the following commands in ftp command prompt
lsВ – List the contents of the current directory.
cdВ directory_name :В Change to the specified directory
Download files from ftp server
getВ filename : Download the file from ftp server to the local computer
lcd directory_name : Change the directory of your local host.
put filename :В Upload the file from your local host to the current directory in ftp server
In this example, I don’t have write access to the ftp server, so I have got ‘Access is denied’ message from the server.
Download multiple files
We can use ‘mget *’ command to get multiple files from the server. But this command will prompt you for confirmation for each of the files.
This can be avoided by runing theВ command ‘prompt‘ which sets the interactive mode to off.
Similarly we can use ‘mput *‘ command to upload multiple files to the ftp server.
Close the ftp connection
Finally, we can close the ftp connection by runningВ either of ‘quit’ or ‘bye’ commands.
Windows ftp client command line commands
This is a list of the commands available when using the Microsoft Windows command-line FTP client (requires TCP/IP to be installed). All information is from the Windows NT help files. If you need to use the «raw» FTP commands instead of these interpreted commands (for example, if you’re writing your own FTP client), please consult this list instead.
List of FTP commands for the Microsoft command-line FTP client
Command-line options
- -v — Suppresses verbose display of remote server responses.
- -n — Suppresses auto-login upon initial connection.
- -i — Turns off interactive prompting during multiple file transfers.
- -d — Enables debugging, displaying all ftp commands passed between the client and server.
- -g — Disables filename globbing, which permits the use of wildcard chracters in local file and path names.
- -s:filename — Specifies a text file containing ftp commands; the commands will automatically run after ftp starts. No spaces are allowed in this parameter. Use this switch instead of redirection (>).
- -a — Use any local interface when binding data connection.
- -w:windowsize — Overrides the default transfer buffer size of 4096.
- computer — Specifies the computer name or IP address of the remote computer to connect to. The computer, if specified, must be the last parameter on the line.
Client commands
- ! — Runs the specified command on the local computer
- ? — Displays descriptions for ftp commands
- append — Appends a local file to a file on the remote computer
- ascii — Sets the file transfer type to ASCII, the default
- bell — Toggles a bell to ring after each file transfer command is completed (default = OFF)
- binary — Sets the file transfer type to binary
- bye — Ends the FTP session and exits ftp
- cd — Changes the working directory on the remote computer
- close — Ends the FTP session and returns to the command interpreter
- debug — Toggles debugging (default = OFF)
- delete — Deletes a single file on a remote computer
- dir — Displays a list of a remote directory’s files and subdirectories
- disconnect — Disconnects from the remote computer, retaining the ftp prompt
- get — Copies a single remote file to the local computer
- glob — Toggles filename globbing (wildcard characters) (default = ON)
- hash — Toggles hash-sign (#) printing for each data block transferred (default = OFF)
- help — Displays descriptions for ftp commands
- lcd — Changes the working directory on the local computer
- literal — Sends arguments, verbatim, to the remote FTP server
- ls — Displays an abbreviated list of a remote directory’s files and subdirectories
- mdelete — Deletes one or more files on a remote computer
- mdir — Displays a list of a remote directory’s files and subdirectories
- mget — Copies one or more remote files to the local computer
- mkdir — Creates a remote directory
- mls — Displays an abbreviated list of a remote directory’s files and subdirectories
- mput — Copies one or more local files to the remote computer
- open — Connects to the specified FTP server
- prompt — Toggles prompting (default = ON)
- put — Copies a single local file to the remote computer
- pwd — Displays the current directory on the remote computer (literally, «print working directory»)
- quit — Ends the FTP session with the remote computer and exits ftp (same as «bye»)
- quote — Sends arguments, verbatim, to the remote FTP server (same as «literal»)
- recv — Copies a remote file to the local computer
- remotehelp — Displays help for remote commands
- rename — Renames remote files
- rmdir — Deletes a remote directory
- send — Copies a local file to the remote computer (same as «put»)
- status — Displays the current status of FTP connections
- trace — Toggles packet tracing (default = OFF)
- type — Sets or displays the file transfer type (default = ASCII)
- user — Specifes a user to the remote computer
- verbose — Toggles verbose mode (default = ON)
Parameter(s):
command — Specifies the command to run on the local computer. If command is omitted, the local command prompt is displayed; type «exit» to return to ftp.
Parameter(s):
command — Specifies the name of the command about which you want a description. If command is not specified, ftp displays a list of all commands.
append
Syntax: append local-file [remote-file]
Parameter(s):
local-file — Specifies the local file to add.
remote-file — Specifies the file on the remote computer to which local-file will be added. If remote-file is omitted, the local filename is used for the remote filename.
ascii
Note
FTP supports two file transfer types, ASCII and binary image. ASCII should be used when transferring text files. See also binary.
In ASCII mode, character conversions to and from the network standard character set are performed. For example, end-of-line characters are converted as necessary, based on the target operating system.
binary
Note
FTP supports two file transfer types, ASCII and binary image. Binary should be used when transferring executable files. In binary mode, the file is moved byte-by-byte. See also ascii.
Syntax: cd remote-directory
Parameter(s):
remote-directory — Specifies the directory on the remote computer to change to.
close
debug
delete
Syntax: delete remote-file
Parameter(s):
remote-file — Specifies the file to delete.
Syntax: dir [remote-directory] [local-file]
Parameter(s):
remote-directory — Specifies the directory for which you want to see a listing. If no directory is specified, the current working directory on the remote computer is used.
local-file — Specifies a local file to store the listing. If not specified, output is displayed on the screen.
disconnect
Syntax: get remote-file [local-file]
Parameter(s):
remote-file
Specifies the remote file to copy.
local-file
Specifies the name to use on the local computer. If not specified, the file is given the remote-file name.
Parameter(s):
command — Specifies the name of the command about which you want a description. If command is not specified, ftp displays a list of all commands.
Parameter(s):
directory — Specifies the directory on the local computer to change to. If directory is not specified, the current working directory on the local computer is displayed.
literal
Syntax: literal argument [ . ]
Parameter(s):
argument — Specifies the argument to send to the FTP server.
Syntax: ls [remote-directory] [local-file]
Parameter(s):
remote-directory — Specifies the directory for which you want to see a listing. If no directory is specified, the current working directory on the remote computer is used.
local-file — Specifies a local file to store the listing. If not specified, output is displayed on the screen.
mdelete
Syntax: mdelete remote-files [ . ]
Parameter(s):
remote-files — Specifies the remote files to delete.
Syntax: mdir remote-files [ . ] local-file
Parameter(s):
remote-files — Specifies the directory for which you want to see a listing. Remote-files must be specified; type «-» to use the current working directory on the remote computer.
local-file — Specifies a local file to store the listing. Type «-» to display the listing on the screen.
Parameter(s):
remote-files — Specifies the remote file(s) to copy to the local computer.
mkdir
Syntax: mkdir directory
Parameter(s):
directory — Specifies the name of the new remote directory.
Syntax: mls remote-files [ . ] local-file
Parameter(s):
remote-files — Specifies the files for which you want to see a listing. Remote-files must be specified; type «-» to use the current working directory on the remote computer.
local-file — Specifies a local file to store the listing. Type «-» to display the listing on the screen.
Parameter(s):
local-files — Specifies the local files to copy to the remote computer.
Syntax: open computer [port]
Parameter(s):
computer — Specifies the remote computer to connect to. Computer can be specified by IP address or computer name (a DNS or HOSTS file must be available). If auto-login is on (default), FTP also attempts to automatically log the user in to the FTP server (see Ftp command-line options to disable auto-login).
port — Specifies a port number to use to contact an FTP server.
prompt
Syntax: put local-file [remote-file]
Parameter(s):
local-file — Specifies the local file to copy.
remote-file — Specifies the name to use on the remote computer. If not specified, the file is given the local-file name.
quote
Parameter(s):
argument — Specifies the argument to send to the FTP server.
Syntax: recv remote-file [local-file]
Parameter(s):
remote-file — Specifies the remote file to copy.
local-file — Specifies the name to use on the local computer. If not specified, the file is given the remote-file name.
remotehelp
Syntax: remotehelp [command]
Parameter(s):
command — Specifies the name of the command about which you want help. If command is not specified, ftp displays a list of all remote commands.
rename
Syntax: rename filename newfilename
Parameter(s):
filename — Specifies the file you want to rename.
newfilename — Specifies the new filename.
rmdir
Syntax: rmdir directory
Parameter(s):
directory — Specifies the name of the remote directory to delete.
Syntax: send local-file [remote-file]
Parameter(s):
local-file — Specifies the local file to copy.
remote-file — Specifies the name to use on the remote computer. If not specified, the file is given the local-file name.
status
trace
Parameter(s):
type-name — Specifies the file transfer type; the default is ASCII. If type-name is not specified, the current type is displayed.
Note
FTP supports two file transfer types, ASCII and binary image.
ASCII should be used when transferring text files. In ASCII mode, character conversions to and from the network standard character set are performed. For example, end-of-line characters are converted as necessary, based on the destination’s operating system.
Binary should be used when transferring executable files. In binary mode, the file is moved byte-by-byte.
Syntax: user user-name [password] [account]
Parameter(s):
user-name — Specifies a user name with which to log in to the remote computer.
password — Specifies the password for user-name. If not specified, but required, ftp prompts for the password.
account — Specifies an account with which to log on to the remote computer. If account is not specified, but required, ftp prompts for the account.