The filesystem is the invisible mechanism on your hard disk that is responsible for keeping track of all the data stored on the drive. Think of it as a massive table of contents, matching up each filename with its corresponding data stored somewhere on the disk surface. Vista supports three filesystem types:
FAT (File Allocation Table, 16-bit) FAT is used for all drives under 512 MB, such as flash memory cards and floppy disks. The largest drive supported by the FAT filesystem is 2 GB.
FAT32 (File Allocation Table, 32-bit) Designed to overcome the 2 GB partition limit with the FAT system, FAT32 is supported by every version of Windows since Windows 95 OSR2. Today, it’s used mostly for flash memory cards larger than 2 GB, and on older PCs running Windows 98 and Windows Me.
In addition to the support for larger drives, it also supports smaller file clusters, so it stores information more efficiently than FAT. Read my previous post on how to format an external hard drive in FAT32.
NTFS (NT Filesystem) NTFS, designed from the ground up to completely replace FAT/FAT32, is the default filesystem on all Vista PCs. (Specifically, Vista supports NTFS version 3.1.)
It offers security features like encryption and permissions, compression, and quotas. It’s typically faster and more reliable than FAT/FAT32, and supports drives up to 2 terabytes in size. Read my previous post on how to format USB drives with NTFS.
If Windows Vista is the only operating system on your computer, you should be using NTFS—no question. The only compelling reason to use another filesystem is if you have a dual-boot setup with a very old version of Windows, in which case you’d need to choose a filesystem recognized by all operating systems on your computer.
To find out which filesystem is currently being used by a particular drive on your PC, just right-click the drive in Windows Explorer and select Properties.
Yuo can also use the Disk Management utility (diskmgmt.msc) to see an overview of all of your drives.
If you’ve upgraded your PC from an earlier version of Windows, there’s a chance you’re still using the FAT32 filesystem. Assuming you don’t need to keep FAT32 for compatibility with other operating systems, you should convert your drive to NTFS. The process is easy, relatively quick, and won’t harm your data (although you should back up beforehand just to be safe).
Windows Vista provides the FAT to NTFS Conversion Utility (convert.exe) for this purpose. To convert drive C:, for example, just open a Command Prompt window(cmd.exe) and type:
convert c: /fs:ntfs
Note that “c” is the drive letter so make sure to change it to the drive that you want to convert – otherwise you will be converting your drive “c”.
Include the /v option to run in “verbose” mode, which provides more information as it does its job. Type convert /? for other, more advanced options.
Note that this is a one-way conversion, at least when using the software included with Windows Vista. If you need to convert an NTFS drive to FAT32 for some reason, you’ll need a third-party utility such as Disk Director, (http://www.acronis.com/).
Ben Carigtan shows you how it’s done!
