来自 Linux 的 Python pysftp get_r 在 Linux 上运行良好但在 Windows 上运行不正常

标签 python linux windows sftp pysftp

我想使用 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' 

最佳答案

确实,pysftp get_r 在 Windows 上不起作用。它对远程 SFTP 路径使用 os.sepos.path 函数,这是错误的,因为 SFTP 路径总是使用正斜杠。

但您可以轻松实现可移植替代。

import os
from stat import 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) 

请注意,如果您不想使用 pysftp,可以轻松修改以上代码以直接使用 Paramiko。 Paramiko SFTPClient class还有 listdir_attrget方法。唯一的区别是 Paramiko 的 get 没有 preserve_mtime 参数/功能(但如果需要,它可以很容易地实现)。

并且您应该使用 Paramiko 而不是 pysftp,因为 pysftp 似乎是一个死项目。参见 pysftp vs. Paramiko .


代码的可能修改:


有关 put_r 的类似问题,请参阅:
Python pysftp put_r does not work on Windows


旁注:不要“禁用主机 key 检查”。您正在失去针对 MITM attacks 的保护.

有关正确的解决方案,请参阅 Verify host key with pysftp .

关于来自 Linux 的 Python pysftp get_r 在 Linux 上运行良好但在 Windows 上运行不正常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50118919/

相关文章:

python - 暂时进入IPython中的调试器

c++ - FD_ISSET() 是否返回接收数据的文件描述符

c++ - 将文件从一个目录移动到另一个目录

mysql - [Qt][QMYSQL] 已部署的应用程序 - 未加载驱动程序

c++ - 测量 Windows C++ 的时间、毫秒或微秒

python - 在 matplotlib 中分散一个 2D numpy 数组

Python 使用带有自定义全局变量的 exec

python - cassandra cqlenengine 映射键上的列索引

linux - 替换一行结束后的第二个点

linux - 通过 ansible 获取 yum 更新列表失败