I'm used to running ssh on a Unix command-line and am working for the first time with PuTTY on Windows. When I type

get file.txt

on the PSFTP command line, where does file.txt go? PSFTP returned:

remote:/somedirectories/file.txt => local:file.txt

but I can't find the file locally.

Thanks!

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

It saves it in the local working directory. You can see the local working directory by typing:

lpwd

You can change the local working directory using:

lcd \path\to\new\dir
link|improve this answer
feedback

Your Answer

 
or
required, but never shown