Reading FAT12 Image File in C

I have a FAT12 image file and I have to open it and read it. I would like to view this image file (directories / files with it) so that I can understand what results I should get. Does anyone know of a good software that will allow me to view this FAT12 image file? Also, can someone be guided in the right directions when trying to read the contents of this image file?

+3
source share
4 answers

There are many open source FAT file system implementations.

The one that, it seems to me, has good transparent portable code, although there are errors, especially in the implementation of FAT12, http://www.larwe.com/zws/products/dosfs/index.html .

+5
source

On Linux, you can simply install it using a loopback device.

0
source

There is a Segger file system called emFile . This is portable fs, I have emFile working on the number of embedded operating systems with minimal (almost none, a few simple functions that need to be implemented for each os). It is not expensive , I mean, if you do something for pleasure, you probably do not want to spend money at all, but for commercial use it is cheap.

0
source

All Articles