Class FAT
- java.lang.Object
-
- com.github.mjdev.libaums.fs.fat32.FAT
-
public class FAT extends java.lang.ObjectThis class represents the File Allocation Table (FAT) in a FAT32 file system. The FAT is used to allocate the space of the disk to the different files and directories.The FAT distributes clusters with a specific cluster size
#getBytesPerCluster(). Every entry in the FAT is 32 bit. The FAT is a (linked) list where the clusters can be followed until a cluster chain ends.For more information you should refer to the official documentation of FAT32.