Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How do I upload files to an FTP site????

Status
Not open for further replies.

Jechols

MIS
Jul 1, 2005
9
US
Ok, I'm embarrased to even ask, but I've never had to upload files to an FTP site and have no idea how to do it. I have the IP address and password and the files...All the pieces are there, just not the basic knowledge to do it...Thanks so much!!


Jennifer
 
Are you using Windows XP? If so, you can use the command line ftp client to upload the files. See the XP help for info on what the commands do.

Otherwise, download a gui FTP client and upload the files. I use WS_FTP LE as its an easy to use, no nonsense ftp client.
 
You can also use many browsers, including IE. In the address bar just type the URL, such as ftp://servername.org, then depending on the server & browser, you might need to do a File, Login As.. Then just drag & drop files. Even better would be a full FTP client which can be picked up at most shareware websites.
 
If you're hard core, CLI kind of guy, the command is "put" (as opposed to "get" which is used to download from the server). :)
 
put is only used to up single files.

As a warning for the CLI based ftp client, if you are wanting to upload binary files (ie non text) you would first need to change to Bin and then either put or mput or get or mget.

Generally here is a sample of what I would do.

from the command line (assuming it's DOS)

FTP ftp.site.com

it would then prompt for username and password.

If you are copying files from your machine up then you would need to do an LCD (local drive)..

LCD c:\temp\

then browse to the directory on the ftp site where you need to upload to.

Then type.

Bin

to change from ascii to binary

and then either put or mput

mput * would put all of the files in the LCD directory onto the ftp directory.

If you want to download then use get or mget, just remember that you need to change to bin to download binary executables (pretty much everything not ascii related).

Hope that helps.
 
Yeah I was going to add that but I couldn't remember the increments that it reports.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top