这是我的代码
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/.'
有人帮助我