python - paramiko怎么判断远程目录是否存在?
伊谢尔伦
伊谢尔伦 2017-04-18 09:04:49
0
1
2716

如题:paramiko怎么判断远程目录是否存在?
在调用exec_command函数的时候,怎么判断远程目录是否存在呢? 因为这里不能传if进去。

伊谢尔伦
伊谢尔伦

小伙看你根骨奇佳,潜力无限,来学PHP伐。

Antworte allen(1)
刘奇

可以使用笨一点方法,运行一些对目录检测的命令,如ls,然后去检测输出!

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

方法二:
使用sftp, 不使用exec_command

sftp = client.open_sftp()
try:
    sftp.stat(path)
    print("exist")
except IOError:
    print("not exist")
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!