24

how to download folder(contains folder inside folder and files) from putty using ssh client i want download entire Dump to local Drive... can any one guide me ...

  • 3
    possible duplicate of [Transferring files over SSH](http://stackoverflow.com/questions/343711/transferring-files-over-ssh) – shilovk Aug 25 '14 at 06:57

4 Answers4

38

You need to use some kind of file-transfer protocol (ftp, scp, etc), putty can't send remote files back to your computer. I use Win-SCP, which has a straightforward gui. Select SCP and you should be able to log in with the same ssh credentials and on the same port (probably 22) that you use with putty.

danny
  • 10,103
  • 10
  • 50
  • 57
  • 1
    Thanks, it is easy to use. The UI similar as FileZilla. Just input the IP, Host + Pwd, then can copy and paste from/to server/local pc. – sky91 Feb 02 '17 at 02:10
14

You cannot use PuTTY to download the files, but you can use PSCP from the PuTTY developers to get the files or dump any directory that you want.

Please see the following link on how to download a file/folder: https://the.earth.li/~sgtatham/putty/0.60/htmldoc/Chapter5.html

Venrix
  • 473
  • 6
  • 16
Rakesh Sankar
  • 9,337
  • 4
  • 41
  • 66
12

If you need to download a folder via a Linux command try this out:

$ scp your_username@remotehost.edu:foobar.txt -r /some/local/directory

Sources:

Related Post: How to download a file from server using SSH?

8)

Community
  • 1
  • 1
Mikeumus
  • 3,570
  • 9
  • 40
  • 65
1

I use both PuTTY and Bitvise SSH Client. PuTTY handles screen sessions better, but Bitvise automatically opens up a SFTP window so you can transfer files just like you would with an FTP client.

siliconrockstar
  • 3,554
  • 36
  • 33