Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
the right answer is from Apr 6 '11 at 14:13 by lkuty. Don't use mget, it's not recursive at all. answer from Sep 22 '08 at 9:01 Thibaut Barrère is easier to understand but must add the option -l 0 as mentioned in the comments – chriscatfr Nov 11 '12 at 22:12

13 Answers

up vote 109 down vote accepted

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!

EDIT: I had to specify the --user and --password commands to get it to work on Ubuntu

share|improve this answer
17  
Better use wget -m (--mirror). wget -r is limited to a recursion depth of 5 by default. – asmaier Jul 7 '11 at 19:28
2  
I had to use --user and --password too on Red Hat. My wget is: GNU Wget 1.11.4 Red Hat modified I wonder if it's a version thing or a distro thing... – devin Jan 17 '12 at 20:18
5  
You can set infinite recursion level with -l 0, so no need of using --mirror which may have some unwanted side effects such as .listing files – Hnatt Mar 8 '12 at 21:52
Oh my goodness. Amazing. Thank you, sir. I also wanted to note that wget also downloaded my data including the full directory structure: [ip][home_folder][main_folder][etc...] Had to move things around after, but it got my files to me. Thanks! – Loren Rogers Oct 14 '12 at 16:32
You can enter the command via a shell script, if you would prefer not to have your password in the history. Remember to delete the script when your done. Alternatively, you can perform history -c. – SSH This Dec 10 '12 at 21:27
show 1 more comment

If lftp is installed on your machine, use mirror dir. And you are done.

share|improve this answer
1  
btw, mirror -R dir does recursive directory upload/update – cirosantilli May 13 at 21:02

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.

To recap:

cd /dir
prompt
interactive mode off
mget *
share|improve this answer
3  
This does not appear to recursively download any folders that are within the remote directory. – Tom Auger Jun 1 '12 at 17:53
1  
I thought I was going mad when I read the answer; I never knew mget was recursive. Turns out it is not. This is not the correct answer for the title of this question. The wget answers below work well. – Jason Oct 23 '12 at 19:56
1  
Down-voted as this is not the right answer – rroche Nov 1 '12 at 23:44

toggle the prompt by PROMPT command.

Usage:

ftp>cd /to/directory    
ftp>prompt    
ftp>mget  *
share|improve this answer
+1 for being the only one supplying an actuall FTP command and not wget or what not. – Torxed Nov 30 '12 at 11:57

Just to complement the answer given by Thibaut Barrère.

I used

wget -r -nH --cut-dirs=5 -nc ftp://user:pass@server//absolute/path/to/directory

Note the double slash after the server name. If I don't put an extra slash the path is relative to the home directory of user.

  • -nH avoids the creation of a directory named after the server name
  • -nc avoids creating a new file if it already exists on the destination (it is just skipped)
  • --cut-dirs=5 allows me to take the content of /absolute/path/to/directory and to put it in the directory where I launch wget. The number 5 is used to filter out the 5 components of the path. The double slash means an extra component.
share|improve this answer
Brilliant. The ability to skip files that already exist is great for catching up with the latest additions on a server migration. rsync is more efficient and more flexible, but sometimes that option is just not available, and only FTP can be used. – Jason Oct 23 '12 at 19:50

wget -r ftp://url

Work perfectly for Redhat and Ubuntu

share|improve this answer

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

share|improve this answer

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.

share|improve this answer

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/

share|improve this answer
2  
ncftp work on windows as well – Ilya Sep 22 '08 at 9:14
I love ncftp! Thank you. – jocull Oct 26 '12 at 19:39

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

share|improve this answer

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.

share|improve this answer
ncftp -u <user> -p <pass> <server>
ncftp> mget directory
share|improve this answer
I couldn't login to a FTP-server using the params, but using the structure open ftp://USERNAME:PASSWORD@HOST after starting ncftp… – feeela Oct 7 '11 at 10:22
+1 - I know this post is old, but I just came across it and ncftp was real easy to use. I used -R for recursive getting with ncftpget – Zack Macomber Feb 20 '12 at 22:57

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.

share|improve this answer
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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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