使用python中的sftp将文件从远程服务器移动到本地

时间:2019-12-09 09:08:57

标签: python sftp pysftp

这是我的代码

import pysftp

remotepath = '/home/ebsit11k/public_html/css/'
localpath = 'E:/Naveen/Python/css/'
cnopts = pysftp.CnOpts()
cnopts.hostkeys = None

with 
    pysftp.Connection(host='xxx.xx',username='test',password='test',cnopts=cnopts) as sftp:


   sftp.get_r(remotepath,localpath)
   print('Download finished')

但是我无法从远程服务器下载文件 遇到错误

FileNotFoundError: [WinError 3] The system cannot find the path specified: 'E:/Naveen/Python/css/./home/ebsit11k/public_html/css/.'

有人帮助我

0 个答案:

没有答案