vote up 3 vote down star

I'm trying to ftp a folder using the command line ftp client, but so far I've only been able to use 'get' to get individual files.

flag

9 Answers

vote up 10 vote down check

Try mget:

   mget remote-files
              Expand the remote-files on the remote machine and do a get for each file  name  thus  produced.
              See  glob  for  details on the filename expansion.  Resulting file names will then be processed
              according to case, ntrans, and nmap settings.  Files are transferred  into  the  local  working
              directory, which can be changed with ‘lcd directory’; new local directories can be created with
              ‘! mkdir directory’.

You might also need to switch off the prompt so it does not ask for every file (see the propmt command)

But using scp or rsync over ssh is probably better than ftp if you can.

link|flag
vote up 5 vote down

If you can use scp instead of ftp, the -r option will do this for you. I would check to see whether you can use a more modern file transfer mechanism than FTP.

link|flag
I voted this up because it was exactly my first thought, even though it doesnt strictly answer the question as-is. – metao Sep 22 '08 at 9:04
vote up 6 vote down

You could rely on wget which usualy handles ftp get properly (at least in my own experience). I think it goes this way:

wget -r ftp://user:pass@server.com/

Hope this helps!

link|flag
vote up 4 vote down
ncftp -u <user> -p <pass> <server>
ncftp> mget directory
link|flag
vote up 0 vote down

If you can, I strongly suggest you tar and bzip (or gzip, whatever floats your boat) the directory on the remote machine—for a directory of any significant size, the bandwidth savings will probably be worth the time to zip/unzip.

link|flag
vote up 2 vote down

Use WGet instead. It supports HTTP and FTP protocols.

wget -r ftp://mydomain.com/mystuff

Good Luck!

reference: http://linux.about.com/od/commands/l/blcmdl1_wget.htm

link|flag
vote up 2 vote down

There is 'ncftp' which is available for installation in linux. This works on the FTP protocol and can be used to download files and folders recursively. works on linux. Has been used and is working fine for recursive folder/file transfer.

Check this link... http://www.ncftp.com/

link|flag
ncftp work on windows as well – Ilya Sep 22 '08 at 9:14
vote up 2 vote down

If you want to stick to command line FTP, you should try NcFTP. Then you can use get -R to recursively get a folder. You will also get completion.

link|flag
vote up 0 vote down

I would use scp -rp user@host:/home/me .

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.