如何使用Paramiko Python通过SSH从远程服务器复制文件? FileNotFoundError:[WinError 3]系统找不到指定的路径

时间:2018-03-02 04:47:28

标签: python ssh scp

我收到以下错误FileNotFoundError: [WinError 3] The system cannot find the path specified

路径实际上是有效的。我确实看到了指定文件夹中的文件。

enter image description here

更新: 我交换了本地和远程路径,但仍然是同样的错误:

enter image description here

我再次检查了远程服务器,该文件确实存在于服务器上:

enter image description here

1 个答案:

答案 0 :(得分:0)

如果要将远程文件提取到本地系统,您应该使用SFTP - GET而不是PUT(反之亦然)

关于GET的Paramiko文档 http://docs.paramiko.org/en/2.4/api/sftp.html#paramiko.sftp_client.SFTPClient.get