View Single Post
Old 01-06-2003, 12:26 PM   #7
Statica
Premium Member
 
Statica's Avatar
 
Join Date: Jun 1999
Posts: 9,231
Was just abt to PM you with a quick primer to get the job done .. i'll pick it up here in case someone else wants to use it:


Just thot I'd pass along a quick ftp primer for DOS mode (downloads will even be faster than IE) - Windows does come with the ftp command. Open up a DOS prompt and try this out:
(bold = commands you type)(italics=a brief explanation)(what you should see)
C:\Windows> cd \
changing to a useable directory .. for example
C:\> ftp ftp.scansoft.com
this starts the ftp program and connects to scansoft.com at port21 (the default port)

Connected to ftp1.scansoft.com.
220 ftp1 Microsoft FTP Service (Version 4.0).
User (ftp1.scansoft.com:(none)):
anonymous
331 Anonymous access allowed, send identity (e-mail name) as password.
Password:
me@here.com
this tries to log in using an anymous account/guest account
230 Anonymous user logged in.
ftp>
cd /pub/program/paperport
notice the prompt level is now ftp> not C:\> this means that you are issuing commands to the remote computer. the cd command does a change directory to the desired directory - notice the URL; except for the last bit .. the file name, the rest represents a directory.
250 CWD command successful.
ftp>
ls
this command does a directory listing, some servers will even accept the DOS based dir command as well

cp_max.jar
french.exe
german.exe
italian.exe
np_max.cab
np_max.xpi
PaperPort_5_0_Viewer_Installer.bin
Paperport4.zip
PaperPortOCRLinkPatch.exe
PPPatchBP.exe
PPPatchDE.exe
PPPatchES.exe
PPPatchFR.exe
PPPatchIT.exe
PRPORT36.zip
setupex.exe
spanish.exe
viewersetupex.exe
226 Transfer complete.
ftp: 286 bytes received in 0.00Seconds 286000.00Kbytes/sec
ftp>
hash
this is just a helpful nugget that will show you progress of the download by putting a # when you download it
Hash mark printing On ftp: (2048 bytes/hash mark) .
ftp>
bin
this sets the transfer method as binary mode, as opposed to ascii mode that you would use for files like text files, images etc.
200 Type set to I.
ftp>
get setupex.exe
this instructs the program to get the specified file (from the URL), the #s you see represents the file coming to u .. like a transfer meter) .. note the file will come to you in the directory you started your ftp in - C:\ in this case
200 PORT command successful.
150 Opening BINARY mode data connection for setupex.exe(2770856 bytes).
##########################################......
226 Transfer complete.
ftp: 2770856 bytes received in 45.87Seconds 60.41Kbytes/sec.
ftp>
bye
signing off
Statica is offline   Reply With Quote