使用 Fuse 低级 API
我正在尝试使用 Fuse Low level API 实现一个基本的文件系统。用于基本的读/写/mknod 操作。 如果有人能指出一些例子,我将不胜感激,没有关于熔断低级 API 的文档。
任何帮助将不胜感激!
I am trying to implement a basic file system using Fuse Low level API. for basic read/write/mknod operations.
Will be grateful if any one can point to some examples, there is no documentation on fuse low level api.
Any help will be much appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Fuse 实际上附带了一些使用低级 API 的示例。看看 hello_ll.c。
https://github.com/libfuse/libfuse/blob/master/示例/hello_ll.c
Fuse actually ships with a few examples using the low-level API. Have a look at hello_ll.c.
https://github.com/libfuse/libfuse/blob/master/example/hello_ll.c
不幸的是低级别标头,
fuse_lowlevel.h
和库 source 本身是低级 API 的最佳参考。更高级别的使用起来要好得多,我建议您使用它。Unfortunate the low level header,
fuse_lowlevel.h
and the library source itself are the best reference on the low-level API. The higher level one is much nicer to use, I'd recommend that instead.