1

How do I read the file allocation table of a USB mass storage device, which has been formatted using FAT32 file system (functions, structs)?

I'm trying to do this in Linux.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
jarjarbinks
  • 171
  • 1
  • 3
  • 8
  • There's never any need to do this yourself / by hand in linux - just mount the mass storage device as `vfat` filesystem and access it through normal filesystem I/O. The functionality is already there. – FrankH. Jun 01 '11 at 10:58

1 Answers1

2

Refer to Understanding FAT32 Filesystems.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
John Zwinck
  • 239,568
  • 38
  • 324
  • 436