使用sftp创建备份时出现“无效的\ x转义”

时间:2018-10-30 04:55:45

标签: python sftp pysftp

我从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()

0 个答案:

没有答案