Collections:
Other Resources:
Downloading Files with FTP Commands
Downloading Files with FTP Commands
✍: Guest
How we can put some files on the FTP server to allow other users to download them.
Copy files to the FTP server directory in a command window:
>copy ftp.html c:\inetpub\ftproot
1 file(s) copied.
>copy index.html c:\inetpub\ftproot
1 file(s) copied.
>copy reference.html c:\inetpub\ftproot
1 file(s) copied.
Download them with the FTP client in a command window:
>ftp localhost
Connected to localhost.
...
ftp> dir
200 PORT command successful.
150 Opening ASCII mode data connection for /bin/ls.
11:05PM 5537 ftp.html
03:43PM 5082 index.html
08:39PM 1174 reference.html
226 Transfer complete.
ftp: 155 bytes received in 0.00Seconds 155000.00Kbytes/sec.
ftp> mget *.*
200 Type set to A.
mget ftp.html? y
200 PORT command successful.
150 Opening ASCII mode data connection for ftp.html(5537 bytes).
226 Transfer complete.
ftp: 5537 bytes received in 0.01Seconds 553.70Kbytes/sec.
mget index.html? y
200 PORT command successful.
150 Opening ASCII mode data connection for index.html(5082 bytes).
226 Transfer complete.
ftp: 5082 bytes received in 0.01Seconds 508.20Kbytes/sec.
mget reference.html? y
200 PORT command successful.
150 Opening ASCII mode data connection for reference.html(1174 bytes).
226 Transfer complete.
ftp: 1174 bytes received in 0.00Seconds 1174000.00Kbytes/sec.
ftp> quit
221
2008-10-14, 6564🔥, 0💬
Popular Posts:
Why I am getting this "Microsoft Silverlight Update" pop up window? If you have Silverlight 2.0 inst...
What is Apache server? Apache server is an open-source free Web server software that runs websites. ...
Why I am getting the "Warning: Unresponsive Script" message box? How to avoid this message box? When...
What are default Installed Programs on a Windows 7 Home Premium computer? If you are running a Windo...
What is AccelerometerSt.exe process - Hp Accelerometer System Tray? Process AccelerometerSt.exe is t...