如何在python脚本中调用sshfs?
我想使用 sshfs 挂载远程目录。 sshfs 从终端工作正常。 但是如何从 python 脚本中调用它呢?
我尝试过类似的事情 - 但根本不起作用。
import os
cmd = "/usr/bin/sshfs [email protected]:/home/giis /mnt"
os.system(cmd)
I want to mount a remote directory using sshfs. sshfs working fine from terminal.
But how to invoke it from within python script?
I tried something like this - but didn't work at all.
import os
cmd = "/usr/bin/sshfs [email protected]:/home/giis /mnt"
os.system(cmd)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您应该确保您的 sshfs 命令使用 shell 可以正常工作。然后,转到此处查看许多使用Python的subprocess模块调用sshfs命令的示例
first, you should make sure your sshfs command works fine using the shell. Then, go to here to see many examples of using subprocess module of Python to call your sshfs commmand