我试图理解为什么我会收到“权限被拒绝"使用 paramiko 1.7.6 时出错 [英] I'm trying to understand why I'm getting a "Permission Denied" error when using paramiko 1.7.6

查看:71
本文介绍了我试图理解为什么我会收到“权限被拒绝"使用 paramiko 1.7.6 时出错的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

谁能告诉我为什么我收到以下错误:

Can anyone tell me why I'm getting the following error:

Traceback (most recent call last):
  File "C:\Python27\connect.py", line 22, in <module>
    sftp.get(filepath, localpath)
  File "C:\Python27\lib\site-packages\paramiko-1.7.6-py2.7.egg\paramiko\sftp_client.py", line 603, in get
    fl = file(localpath, 'wb')
IOError: [Errno 13] Permission denied: 'C:\\remote'

我在登录 Ubuntu 10.10 机器的 Windows 7(以管理员身份)机器上使用 Python 2.7.这是我正在使用的非常直接的脚本:

I'm using Python 2.7 on a Windows 7 (as administrator) machine logging into an Ubuntu 10.10 machine. Here is the, very straight forward, script that I'm using:

import paramiko
import os




paramiko.util.log_to_file('c:\Python27\paramiko-wininst.log')

host = '192.168.1.14'
port = 22
transport = paramiko.Transport((host,port))
password = 'xxxxxx'
username = 'username'
transport.connect(username = username, password = password)

sftp = paramiko.SFTPClient.from_transport(transport)



filepath = '/home/my.log'
localpath = 'C:\\remote'
sftp.get(filepath, localpath)


sftp.close()
transport.close()

推荐答案

尝试进行以下更改

localpath = 'C:\\remote'
sftp.get(filepath, localpath)

修改为

localpath = 'C:\remote\my.log'
sftp.get(filepath, localpath)

这篇关于我试图理解为什么我会收到“权限被拒绝"使用 paramiko 1.7.6 时出错的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆