Fat32 vs NTFS

siamandm
5StarLounger
Posts: 1192
Joined: 01 May 2016, 09:58

Fat32 vs NTFS

Post by siamandm »

Hi all

i just liked to get some difference between Fat32 and NTFs , and i found this image below
main-qimg-bdc0754f4ad3c9bd2a232d3fc249868f.png
it shows that the max partition for NTFS is 2TB, while the max file size is 16 GB !!! if the partition max size is 2TB how you can store a file size with 16GB?

it shows that max file name 8.3 characters ... I tested on my flash memory which formatted with fat32 it accepted 1234567890 X 17 times the file name became (12345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890)
can someone explain, please

for the fault tolerance, what does auto repair mean?
also, what does compression means?

Regards
You do not have the required permissions to view the files attached to this post.

User avatar
HansV
Administrator
Posts: 78236
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Fat32 vs NTFS

Post by HansV »

That table is not accurate; it appears to be out of date.

The maximum partition size in NTFS depends on the cluster size. In modern systems, the partition size can be much larger than 2 TB. See NTFS on Wikipedia.

MS-DOS only supported file names of type 8.3: 8 characters for the name, 3 characters for the extension. Windows 95 and later support long file names in FAT32, up to 255 characters.

See Analysis of fault tolerance mechanisms in NTFS for how NTFS can automatically "repair" errors.

And compression means that it is possible to reduce the size of folders by transparently compressing and uncompressing them using a method similar to zipping and unzipping files.
Best wishes,
Hans

siamandm
5StarLounger
Posts: 1192
Joined: 01 May 2016, 09:58

Re: Fat32 vs NTFS

Post by siamandm »

Thanks alot Hans very informative

Regards

User avatar
PaulB
BronzeLounger
Posts: 1596
Joined: 26 Jan 2010, 20:28
Location: Ottawa ON

Re: Fat32 vs NTFS

Post by PaulB »

siamandm wrote:...shows that the max partition for NTFS is 2TB, while the max file size is 16 GB !!! if the partition max size is 2TB how you can store a file size with 16GB?
Note that 2TB is equal to about 2,048GB. It can easily hold 16GB.
Regards,
Paul

The pessimist complains about the wind. The optimist expects it to change. The realist adjusts his sails.

User avatar
HansV
Administrator
Posts: 78236
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Fat32 vs NTFS

Post by HansV »

The table mentions 16 TB, I think Siamand's 16 GB was a typo.
Best wishes,
Hans

User avatar
PaulB
BronzeLounger
Posts: 1596
Joined: 26 Jan 2010, 20:28
Location: Ottawa ON

Re: Fat32 vs NTFS

Post by PaulB »

Oops, my bad!
Regards,
Paul

The pessimist complains about the wind. The optimist expects it to change. The realist adjusts his sails.

siamandm
5StarLounger
Posts: 1192
Joined: 01 May 2016, 09:58

Re: Fat32 vs NTFS

Post by siamandm »

ok for example if i get into an interview and they asked me what are the difference between fat32 and NTFS what are the key points are?
as i searched for in google, there are many things mentioned but i like to get some key points which are easy to determine in daily work

User avatar
HansV
Administrator
Posts: 78236
Joined: 16 Jan 2010, 00:14
Status: Microsoft MVP
Location: Wageningen, The Netherlands

Re: Fat32 vs NTFS

Post by HansV »

NTFS is newer than FAT32, and it has many advantages, especially for large drives. NTFS supports:
- Larger volume
- Larger files
- More files
- File-level permissions
- Encryption
- Compression

So NTFS is more suitable for the hard disk in a (Windows) computer.
USB sticks generally don't need all those features, so they mostly still use FAT32.
Best wishes,
Hans

siamandm
5StarLounger
Posts: 1192
Joined: 01 May 2016, 09:58

Re: Fat32 vs NTFS

Post by siamandm »

thanks a lot Hans :)

Fluffyone
NewLounger
Posts: 13
Joined: 17 Oct 2019, 06:54

Re: Fat32 vs NTFS

Post by Fluffyone »

NTFS
NT File System (NTFS) is the most modern file system. Windows uses NTFS for its system drive and, by default, for most non-removable drives. Compatibility: Works with all versions of Windows, but read-only with Mac by default, and may be read-only by default with some Linux distributions. Other devices—with the exception of Microsoft’s Xbox One—probably won’t support NTFS. Limits: No realistic file-size or partition size limits.
FAT32
File Allocation Table 32 (FAT32) is an older file system that's not as efficient as NTFS and doesn't support as big a feature set, but does offer greater compatibility with other operating systems. Compatibility: Works with all versions of Windows, Mac, Linux, game consoles, and practically anything with a USB port. Limits: 4 GB maximum file size, 8 TB maximum partition size.

siamandm
5StarLounger
Posts: 1192
Joined: 01 May 2016, 09:58

Re: Fat32 vs NTFS

Post by siamandm »

thanks a lot @Fluffyone