Overview of FAT32

Overview

This figure summarized the FAT32 filesystem.

The first area contains the reserved area and FAT area. They are counted in term of sectors.

Immediately after FAT area, it is the starting point of cluster 2. It contains the information on the root directory and all data stored. In these areas they are counted in term of clusters.

Boot sector

It is always at the first sector of the disk, and it is used for starting up your computer. It contains:

  • An x86-based CPU jump instruction.

  • The original equipment manufacturer identification (OEM ID).

  • The BIOS parameter block (BPB), a data structure.

  • The extended BPB.

  • The executable boot code (or bootstrap code) that starts the operating system.

Among these elements, the important thing is the BIOS parameter block (BPB), which allows us to obtain the fundamental information about the FAT file system.

Here is the summary table on the fields for FAT32.

Last updated