i have two questions about FAT32 ,
The first if i want to format a partition with FAT32 using 32KB block size i think the maximum partition size i can get is :
2^28 * 32 = 8TB
but why i see them list it as the maximum partition size is 2TB in every reference and windows limit it to 32 GB only ?!
the second question , if I want to know the size of the FAT Table in memory (To know memory consumption ) assuming I'm use 32 GB partition size with 32 KB block size , how to calculate that ?!
this is what I know ,but not sure about it :
- First I have to know the number of entries which is
32GB/32KB=1,048,576
- Second I have to find the size of table which is
1,048,576 * 32 bit each = 4 MB
(or should I multiply with 28)
so is the above calculations are right ?!
Regards