I'm trying to build a new filesystem with deduplication using FUSE.
I tried running the fusexmp_fh.c
provided in the example section of the FUSE. However after mounting the filesystem at a mount point, I can see all the existing directories inside the mount point. I dont need those directories. I want the mounted filesystem to be empty.
I tried searching through fusexmp_fh.c
but could not find out where the existing directories get added.
- Can someone explain to me how this works?
Also
- can
fusexmp_fh.c
be taken as a base for building the filesystem? - Does it have all the basic functionalities?