FAT-32
Clusters
A file within a FAT-32 partition contains a reference to one FAT-32 cluster. This entry in the FAT tables becomes a chain that will be followed to get each cluster that is needed for the file and what order they are to be in. These clusters point to a set of sectors (For example by default it's about 8 sectors per cluster) that come after all the reserved sectors.
Files
File entries can be one of two types
Long File Name
This will contain no information with regards to the file position, sizes or type. Rather this only contains some extra characters that the file may need.
Normal
This is a 32 byte entry that describes file information and position within the partition. The partition uses this to read from the cluster entries and hold the inode value. I should setup a store for the FAT entry and index within parent node
Last updated