Mini File Manager Simulator is a simple, modular file system simulator written in C. It allows you to perform basic file and directory operations in a terminal environment, without using the actual file system.
- Create, delete, and browse files and directories
- Manage directory structure
- In-memory file operations
- Text-based CLI interface
src/– source codeinclude/– header filesdata/– sample data or files used by the programrun– launch script
- C compiler (e.g. gcc)
- Linux/macOS/Windows operating system
Simply execute:
./runThe run script will automatically compile the project and, if you confirm by typing y or Y, launch the program. This makes setup and execution easier for new users.
The code contains comments to help you understand the logic and structure. These comments are intended for educational purposes and to make the code easier to follow, especially for those learning about memory management and data structures in C.
Educational project for learning memory management and data structures in C.