I'm using PSFTP and am looking to download two directories and all of their subdirectories and place them else where on my server.

I would think it would be as simple as

get dirname c:\localdirname
get dirname2 c:\localdirname2

But I get read permission errors, however, if I specify one file at a time, it works. Any ideas?

link|improve this question
I was able to figure it out. LCD to the local directory I want to save to, cd to the remote directory I need, then use mget * – Dave Jun 29 '11 at 17:54
feedback

1 Answer

up vote 0 down vote accepted

Use get -r <dirname>.

To move directories within the same server, you can also use mv <oldname> <newname>.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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