Are there any open source libraries / tools that allow me to do browse and FAT32 formatted image file? I want to extract some files from the image. (Edit: Sorry, i forgot to say i want to do this on Windows 7)
Asked
Active
Viewed 486 times
-1
-
I use HxD editor to open a disk image. – Anand Jul 29 '19 at 02:21
3 Answers
0
Under Linux (and maybe some other unix-based operating systems), you can mount a formatted image file using the -o loop
option of the mount command:
mount -o loop /path/to/image_file mount_point

Xion345
- 1,627
- 12
- 26
0
You can use our CallbackDisk library to create a virtual disk in code. The sample included with CallbackDisk will let you point at the FAT image file and have a disk.

Eugene Mayevski 'Callback
- 45,135
- 8
- 71
- 121