exFAT File Reader
University Projects #Operating Systems
NOTE

Click this link to view the code on GitHub.

Overview#

A reader for the exFAT file system format in C, parsing raw disk images to extract file metadata and content. Demonstrates understanding of how file systems organize data on storage media.

Key Concepts#

  • Parsed boot sector for file system parameters
  • Implemented FAT (File Allocation Table) traversal
  • Read directory entries for file metadata
  • Followed cluster chains to reconstruct files
  • Handled long file names and directory hierarchies

Technologies#

C, exFAT, File Systems, Binary Parsing

← Back to Projects