我习惯在 Unix 命令行上运行 ssh,这是我第一次在 Windows 上使用 PuTTY。当我输入
get file.txt
在 PSFTP 命令行上,file.txt 去哪里了?PSFTP 返回:
remote:/somedirectories/file.txt => local:file.txt
但我无法在本地找到该文件。
谢谢!
答案1
它会将其保存在本地工作目录中。你可以输入以下命令来查看本地工作目录:
lpwd
您可以使用以下方法更改本地工作目录:
lcd \path\to\new\dir
答案2
如果您需要用困难的方式来做这件事,请尝试这个......
defstr zz$, a7$, b7$
defint n7n
n7n=0
a7$="c:\documents\mycom\myshi\dir\fir\tre\somefile.bas"'filepath
for n= 0 to len(a7$)
zz$=mid$(a7$, n, 1)
if zz$="\" then
n7n=n7n+1
end if
next n
for n=1 to n7n
b7$ = field$(a7$, "\", n) & chr$(92)
riched1.addstrings "lcd " & b7$
print b7$
next n
答案3
defstr zz$, a7$, b7$
defint n7n
n7n=0
a7$="c:\documents\mycom\myshi\dir\fir\tre\somefile.bas"'filepath
for n= 0 to len(a7$)
zz$=mid$(a7$, n, 1)
if zz$="\" then
n7n=n7n+1
end if
next n
for n=1 to n7n
b7$ = field$(a7$, "\", n) & chr$(92)
stores in dum$
riched1.addstrings "lcd " & b7$
print b7$
next n
答案4
您也可以右键单击PSFTP
图标。
然后转到属性,将路径设置为您在本地 PC 上喜欢的目录。
例如C:\download\psftp\