File system in userspace (FUSE) on Linux : C implementation
BBFS is a good starting point to develop a file system in C Application should keep in mind file offset before issuing a request. A write should be followed with a seek to offset zero, before issuing read. FUSE 2.7 reads 8K data by default, in two 4K […]