python paramiko sftp问题

t=paramiko.Transport('127.0.0.1',22)t.connect(username='root',password='000000')sftp=... t=paramiko.Transport('127.0.0.1',22)
t.connect(username='root',password='000000')
sftp=paramiko.SFTPClient.from_transport(t)
remotepath="Doc/tmp/"
files=sftp.listdir(remotepath) #<----问题是,如果remotepath不存在怎么办,怎么判断remotepath是否存在?
展开
 我来答
大话残剑
2016-12-21 · TA获得超过2217个赞
知道大有可为答主
回答量:1137
采纳率:56%
帮助的人:714万
展开全部

可以通过异常处理

stdin,stdout,stderr = client.exec_command('ls DIR')
if stdout.readline() != '':
    print("exist")
else:
    print("not exist")

或者用ls检查

stdin,stdout,stderr = client.exec_command('ls DIR')
if stdout.readline() != '':
    print("exist")
else:
    print("not exist")
追问
client是sftp中的对象么?
追答
就是你上面代码的t
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式