5
votes

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!

2

2 Answers

4
votes

Fuse actually ships with a few examples using the low-level API. Have a look at hello_ll.c.

https://raw.githubusercontent.com/libfuse/libfuse/master/example/hello_ll.c

1
votes

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.