Here is a free and simple ftp client for windows – Free Core FTP.
Core FTP Screen
You can save the ftp site’s username and password into the profile for easy access next time. Annoymous ftp is also supported.
However, if you just need a quick ftp without having to download anything, just do it from the DOS Mode.
C:\>ftp www.comp-tools.com
Connected to www.comp-tools.com.
220 ProFTPD 1.3.1 Server (ProFTPD) [111.123.60.111]
User (www.comp-tools.com:(none)): ftpuser
331 Password required for ftpuser
Password: ********
230 User ftpuser logged in
ftp> ls -al
200 PORT command successful
150 Opening BINARY mode data connection for file list
.
..
comp-tools.avi
226-Transfer complete
226 Quotas off
ftp: 26 bytes received in 0.02Seconds 1.63Kbytes/sec.
ftp> bin
200 Type set to I
ftp> mget *.*
200 Type set to I
mget comp-tools.avi? y
200 PORT command successful
150 Opening ASCII mode data connection for comp-tools.avi (16209920 bytes)
226 Transfer complete
ftp: 16254702 bytes received in 60.40Seconds 269.10Kbytes/sec.
ftp> bye
221 Goodbye.
Note:
ls -al – list all the files
bin – set binary mode for non-text files
mget *.* – get all the files
[Via http://comp-tools.com]
No comments:
Post a Comment