从Python脚本中卸载fuse fs

发布于 2024-09-08 10:42:38 字数 268 浏览 4 评论 0原文

我已经用 python 开发了fuse fs,现在想为其编写测试。在测试之前,我将文件系统安装到某个目录:


    fs = MyFuseFS()
    fs.parse(errex=1, ['some_dir'])
    fs.main()

测试之后,我想卸载我的文件系统,想做这样的事情:


fs.unmount()

它是类似于“卸载”方法吗?也许还有其他方法来卸载 fs?

I have developed fuse fs with python and now want to write tests for it. Before testing I mount fs to some dir:


    fs = MyFuseFS()
    fs.parse(errex=1, ['some_dir'])
    fs.main()

After testing I want unmount my fs, want to do something like this:


fs.unmount()

Is it something like "unmount" method? Maybe there is another ways to unmount fs?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

水溶 2024-09-15 10:42:39

http://packages.python.org/fs/expose/fuse.html

您可以从此链接查看您需要的内容。

>>> from fs.memoryfs import MemoryFS
>>> from fs.expose import fuse
>>> fs = MemoryFS()
>>> mp = fuse.mount(fs,"/mnt/my-memory-fs")
>>> mp.unmount()

你猜对了函数名称:)

http://packages.python.org/fs/expose/fuse.html

you can see what you need from this link.

>>> from fs.memoryfs import MemoryFS
>>> from fs.expose import fuse
>>> fs = MemoryFS()
>>> mp = fuse.mount(fs,"/mnt/my-memory-fs")
>>> mp.unmount()

you guessed the function name right :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文