FTP , get directory recursively

H

hon

Hi all,

I'd like to write batch which get a directory from other ftp server, but it
seems ftp command cannot get directory recursively , what's wrong?

Thanks
 
M

Michael Bednarek

I'd like to write batch which get a directory from other ftp server, but it
seems ftp command cannot get directory recursively , what's wrong?

To do this, I use 4NT which has transparent FTP support built-in. The
simple command
DIR /S "ftp:"
will probably do what you want.

4NT is a commercial program. Its FTP support is documented at
<http://jpsoft.com/help/ftpservers.htm>.
 
C

Christophe Naguet

hon said:
Hi all,

I'd like to write batch which get a directory from other ftp server, but it
seems ftp command cannot get directory recursively , what's wrong?

Thanks
Personally I prefer to zip the whole folder with a command line tool
(with maximum compression) and get the zip file
 
J

Jason Gurtz

hon said:
Hi all,

I'd like to write batch which get a directory from other ftp server, but it
seems ftp command cannot get directory recursively , what's wrong?

You could try the client at <http://www.ncftp.com/> or maybe google for
"wget win32"

I've learned to love wget for scripted downloads.

~Jason

--
 

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