我想使用Python 2.7使用SFTP从Linux服务器到本地计算机(Windows和Linux)递归复制整个目录结构文件和子文件夹。
我可以ping服务器并使用同一台机器上的WinSCP下载文件。
我尝试了以下代码,在Linux上运行良好但在Windows上运行不正常。
我尝试了\
,/
,os.join
,所有人都给了我同样的错误,也检查了权限。
import os
import pysftp
cnopts = pysftp.CnOpts()
cnopts.hostkeys = None # disable host key checking.
sftp=pysftp.Connection('xxxx.xxx.com', username='xxx',password='xxx',cnopts=cnopts)
sftp.get_r('/abc/def/ghi/klm/mno', 'C:\pqr',preserve_mtime=False)
File "<stdin>", line 1, in <module> File "C:\Python27\lib\site-packages\pysftp_init_.py", line 311, in get_r preserve_mtime=preserve_mtime)
File "C:\Python27\lib\site-packages\pysftp_init_.py", line 249, in get self._sftp.get(remotepath, localpath, callback=callback)
File "C:\Python27\lib\site-packages\paramiko\sftp_client.py", line 769, in get with open(localpath, 'wb') as fl: IOError: [Errno 2] No such file or directory: u'C:\\pqr\\./abc/def/ghi/klm/mno/.nfs0000000615c569f500000004'
答案 0 :(得分:3)
实际上,pysftp get_r
在Windows上不起作用。它使用os.sep
和os.path
函数用于远程SFTP路径,这是错误的,因为SFTP路径总是使用正斜杠。
但您可以轻松实现便携式替换:
import os
from stat import S_IMODE, S_ISDIR, S_ISREG
def get_r_portable(sftp, remotedir, localdir, preserve_mtime=False):
for entry in sftp.listdir_attr(remotedir):
remotepath = remotedir + "/" + entry.filename
localpath = os.path.join(localdir, entry.filename)
mode = entry.st_mode
if S_ISDIR(mode):
try:
os.mkdir(localpath)
except OSError:
pass
get_r_portable(sftp, remotepath, localpath, preserve_mtime)
elif S_ISREG(mode):
sftp.get(remotepath, localpath, preserve_mtime=preserve_mtime)
使用它像:
get_r_portable(sftp, '/abc/def/ghi/klm/mno', 'C:\\pqr', preserve_mtime=False)
可能修改代码:
附注:请勿“禁用主机密钥检查”。您正在失去对MITM attacks的保护。
要获得正确的解决方案,请参阅Verify host key with pysftp。