https://github.com/repalash/verysimplefilesystem
A Very Simple FileSystem developed as the project for OS course.
https://github.com/repalash/verysimplefilesystem
Last synced: 4 months ago
JSON representation
A Very Simple FileSystem developed as the project for OS course.
- Host: GitHub
- URL: https://github.com/repalash/verysimplefilesystem
- Owner: repalash
- Created: 2015-12-10T13:09:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T11:10:39.000Z (over 9 years ago)
- Last Synced: 2025-01-17T10:12:10.381Z (6 months ago)
- Language: C
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
Very Simple File System
=======================A Very Simple FileSystem developed as the project for OS course.
It creates a virtual filesystem on a file, and has methods to read and write on a data block, and read and write from a file.
I used Inodes and Bitmaps to keep track of free data blocks and implement the file system.
The inode for a file has the file metadata and upto 15 pointers to data blocks.