built-in FTP client - doing multiple files at once?

G

gluino

Hi

Can WinXP's built-in FTP client provide a way to quickly transfer all
files in a directory?

For example:
put *.*
would be expected to upload all files in current local directory into
current remote directory.

And how about transfering a directory together with all its contents?
 
M

Mike Cawood, HND BIT

gluino said:
Hi

Can WinXP's built-in FTP client provide a way to quickly transfer all
files in a directory?

For example:
put *.*
would be expected to upload all files in current local directory into
current remote directory.

And how about transfering a directory together with all its contents?
The Get command just seems to be capable of transferring one file at a time.
I use a third party FTP program (WS_FTP LE) which gets round that problem.
Regards Mike.
 
J

John Wunderlich

Hi

Can WinXP's built-in FTP client provide a way to quickly transfer all
files in a directory?

For example:
put *.*
would be expected to upload all files in current local directory into
current remote directory.

And how about transfering a directory together with all its contents?

The built-in FTP program won't do this.

The very best free FTP client that will do this is "FileZilla". You
just drag a folder from one window to the next and everything just
goes. Check it out:

<http://sourceforge.net/projects/filezilla>

HTH,
John
 
C

cornedbeef007-groups

Hi

Can WinXP's built-in FTP client provide a way to quickly transfer all
files in a directory?

For example:
put *.*
would be expected to upload all files in current local directory into
current remote directory.

And how about transfering a directory together with all its contents?

Multiple get with mget, multiple put with mput.
However, FileZilla is much better than the commandline fpt client
included in WinXP

OR, you could just use Windows Explorer (no not IE, just Explorer)
In the address bar, type the ftp server address
ftp://ftp.server.com
Press enter.
It should respond and ask for a username. enter username, and it
should ask for a password. Enter your password, and you're in.
Open another Explorer locally, and browse to the folder with the files
you want to transfer.
Select the files, and drag them to the ftp server window. Sit back and
watch.

Good Luck.
 
T

Tim Slattery

gluino said:
Hi

Can WinXP's built-in FTP client provide a way to quickly transfer all
files in a directory?

For example:
put *.*

The correct command for multiple files is mput, not put.
And how about transfering a directory together with all its contents?

I don't think so. I think you'd have to create the target directory on
the remote machine first (mkdir).
 
S

smlunatick

The correct command for multiple files is mput, not put.


I don't think so. I think you'd have to create the target directory on
the remote machine first (mkdir).

I get "sometimes" the directory created.

I "second" the recommendation for Filezilla. Much more easy to FTP
than with the "commmand line" version.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top