Hello everybody. I need to implement a filesystem on a diskette, with operations such as format, copy files, directories, etc. I need to implement my own FS architecture, so I need a way to access directly the data blocks on the diskette. How can I do that

Implementing a File System
Jeremy H.
Aaron Erickson
moaner
Uroj
Hi,
I think this is quite a general question. IMO, this could be achieved using low-level language such as C++, or even assembly. Read books that discusses this kind of approach. And If you encounter some specific problems then don't hesitate to post it here...
cheers,
Paul June A. Domag
mjd918
It sould be possible to write a filesystem in C# as well. In fact Microsoft Research has an OS in C#. Take a look here: http://research.microsoft.com/os/singularity/
However, based on your need which requires more of a direct low-level access, I would agree with Paul in saying that C++ would be the way to go.
Regards,
Vikram
rikmar