繁体   English   中英

使用pysftp从SFTP服务器下载文件到本地机器时出现PermissionError

[英]Getting PermissionError while downloading files to local machine from SFTP server using pysftp

我无法从 SFTP 服务器复制文件。 我收到权限错误。

我尝试在os.mkdirs()函数中更改模式。

sftp = pysftp.Connection(host = myhostname, username= myusername,  password= mypassword, port=22, cnopts=mycn`enter code here`opts)
os.makedirs('S:\\work\\Automation\\ML\\Procressed data\\FY20\\FW'+fweek+'\\output', exist_ok=True)

localpath = 'S:\\work\\Automation\\ML\\Procressed data\\FY20\\'+fweek+'\\output' 
englishpath ='dell.ccaprocessrepository/output_ts_2020'+fweek+'_English_EU.txt'
chinapath = 'repository/output_ts_2020'+fweek+'_CHT.txt'
japanpath = 'repository/output_ts_2020'+fweek+'_Japan.txt'
koreapath = 'repository/output_ts_2020'+fweek+'_Korea.txt'

sftp.get(remotepath= englishpath, localpath= localpath)
sftp.get(remotepath= chinapath, localpath= localpath)
sftp.get(remotepath= japanpath, localpath= localpath)
sftp.get(remotepath= koreapath, localpath= localpath)
PermissionError: [Errno 13] Permission denied: 'S:\\work\\Automation\\ML\\Procressed data\\FY20\\29\\output'

pysftp Connection.get方法localpath参数是文件的路径,下载的内容应该存储到其中。

localpathoutput是一个文件夹,而不是一个文件

您需要将文件名附加到路径中。

englishlocalpath = localpath + '\\output_ts_2020'+fweek+'_English_EU.txt'
sftp.get(remotepath=englishpath, localpath=englishlocalpath)

或者,将本地工作目录更改为localpath ,您可以省略localpath参数。 pysftp 会将文件下载到工作目录,保留原始名称(取自remotepath参数):

os.chdir(localpath)

sftp.get(remotepath=englishpath)
sftp.get(remotepath=chinapath)
sftp.get(remotepath=japanpath)
sftp.get(remotepath=koreapath)

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM