Help with Implement a simple filesystem from scratch
Project detail
Implement a simple filesystem from scratch. Implementation of a persistent “raw” software disk available in softwaredisk.h and softwaredisk.c, will be provided, which supports reads and writes of fixed-sized blocks (numbered 0..software_disk_size() – 1). This component simulates a hard drive. Your goal is to wrap a higher-level filesystem interface around the provided software disk implementation. It is your responsibility to implement an API that will be provided, seen below, track files that are created, allocate blocks for file allocation, the directory structure, and file data.