我从youtube视频中获取了此代码,并试图对其进行编辑以帮助我
使用sftp
备份笔记本电脑上的文件夹,但仍然出现以下错误:
Invalid\x escape.
什么原因导致此问题?
这是我的代码:
import pysftp as sftp
def sftpExample():
try:
s = sftp.Connection(host='192.168.91.151',username='test',password='password')
remotepath='/home/baar/test'
localpath='C:\Users\xps\Desktop\testme'
s.put(localpath,remotepath)
s.close()#closes the connection
except Exception, e:
print str(e)
sftpExample()