Using the Fuse-Low Level API

I am trying to implement a basic file system using the low level Fuse API. for basic read / write / mknod operations. We would be grateful if anyone could point out some examples, there is no documentation on the low-level api fuse.

Any help would be greatly appreciated!

+4
source share
2 answers

The fuse actually comes with a few examples using the low-level API. Take a look at hello_ll.c.

https://code.google.com/p/macfuse/source/browse/trunk/filesystems/hello/hello_ll.c

+3
source

fuse_lowlevel.h low level fuse_lowlevel.h and source library are the best link to low level API. A higher level one is much nicer to use, I would recommend this instead.

+1
source

Source: https://habr.com/ru/post/1343618/


All Articles