File system implementation

Question about which tools to use, bugs, the best way to implement a function, etc should go here. Don't forget to see if your question is answered in the wiki first! When in doubt post here.
Post Reply
Anon

File system implementation

Post 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 !
Nitin Dutt

RE:File system implementation

Post 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 !
Post Reply