Page 1 of 1

File system implementation

Posted: Sun Sep 30, 2001 11:00 pm
by Anon
How would you create afile system ?
Is is a bunch of source code ?
How would you implement it ?
I see all these tables about what the FS will include but nothing on how to implement it !

RE:File system implementation

Posted: Tue Oct 02, 2001 11:00 pm
by Nitin Dutt
you can implement the most basic fat12 file system
lots of info is available on net. so just search.

you have to maintain a data structure for fs which direct
to the files in the disk. just create the structure
yourself in c, and write in the memory and keep updating
it when saving your files in disk, so next time u going to
read those files, all you have to do is to read again
your fs datastructure and locate it in your disk.





>On 2001-10-01 22:41:02, Anon wrote:
>How would you create afile system ?
>Is is a bunch of source code ?
>How would you implement it ?
>I see all these tables about what the FS will include but nothing on how to implement it !