what is the largest file that can be stored on a disk with t
what is the largest file that can be stored on a disk with the FAT32 file system?
Solution
On the FAT32 file system, it has 32-bit field that stores the length of file.
So, at maximum, you can save from 0 to 2^32 - 1 in it. And 2^32 means 4GB.
So, the largest file that can be stored on a disk will have size of 4GB for the FAT32 file system.
