I'm Trying To Understand Why I'm Getting A "permission Denied" Error When Using 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 sftp.get(filepath, localp
Solution 1:
Try to make the following change
localpath = 'C:\\remote'
sftp.get(filepath, localpath)
modify it to
localpath = 'C:\remote\my.log'
sftp.get(filepath, localpath)
Post a Comment for "I'm Trying To Understand Why I'm Getting A "permission Denied" Error When Using Paramiko 1.7.6"