Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Fuse-Low Level 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!

like image 894
user658648 Avatar asked Mar 14 '11 11:03

user658648


1 Answers

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

like image 51
jleahy Avatar answered Oct 25 '22 01:10

jleahy