-1

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)

ctasdemir
  • 383
  • 4
  • 13

3 Answers3

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
0

IsoBuster does exactly that !

www.isobuster.com

Peter
  • 1,334
  • 12
  • 28