Tagged Questions
1
vote
2answers
433 views
File Allocation Table Reading
I am working on a custom FAT file system explorer and things have been going quite well. However, I want to know if there is a better way to efficiently read/write to the chainmap. For large devices, ...
1
vote
2answers
2k views
low level C++ style i/o in C# for reading FAT32
I am working on reading the FAT32 entry of the hard disk and so far have been successful in reading the entries by making use of the CreateFile, ReadFile, and SetFilePointer APIs. Here is my code ...