Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/repalash/verysimplefilesystem
A Very Simple FileSystem developed as the project for OS course.
https://github.com/repalash/verysimplefilesystem
Last synced: 1 day 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 (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-20T11:10:39.000Z (almost 9 years ago)
- Last Synced: 2024-06-26T05:20:53.283Z (5 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.