FTP , get directory recursively

  • Thread starter Thread starter hon
  • Start date Start date
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
 
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>.
 
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
 
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

--
 
Back
Top