qpfkplokvj 发表于 2016-6-8 05:42:23

FTP 操作(命令行)

  使用命令行的一次上传过程。
  
  D:\>ftp 2xx.xx.xxx.9
Connected to 2xx.xx.xxx.9
220 Welcome to FTP service.

User : ftpuser

331 Please specify the password.
Password: xxxx

230 Login successful.

ftp> lcd d:\              <-------------------定位到本地的目录
Local directory now D:\.

ftp> put Firefox.exe
200 PORT command successful. Consider using PASV.
150 Ok to send data.
226 File receive OK.
ftp: 发送 7330584 字节,用时 1.73Seconds 4230.00Kbytes/sec. <-------------------传输速度

ftp> quit
页: [1]
查看完整版本: FTP 操作(命令行)