Understanding the NTFS File System

Written by Barry Dysert (last updated September 30, 2019)

1

A file system is associated with disk drives, and is responsible for how the disk, and the files on it, are manipulated and utilized. The three most popular file systems used by Windows are NTFS (New Technology File System), FAT32 (File Allocation Table), and exFAT (extended File Allocation Table). NTFS is the most robust and powerful file system of the three. For one thing, you can create an NTFS volume as large as just under 256 TB (NTFS file sizes can be up to at least 24 TB), which can contain as many files as there is physical space to hold them. Other advantages of NTFS include:

  • built-in security
  • recoverability
  • file compression
  • quotas
  • encryption

These features provide reliability and security for enterprise-wide operation. They also allow you to deal with the physical limitations of disk resources by providing disk quotas and file compression. An additional feature of NTFS is the Change Journal which keeps a record of changes made to the NTFS volume. This feature is different than the journaling attribute of the NTFS which provides a method for system changes to be written to a log before the changes are actually written to the system. You can find more information on the NTFS file system at:

https://www.lifewire.com/ntfs-file-system-2625948

Although NTFS is the preferred file system for hard disks—and is required for Windows system drives—FAT32 is the default for smaller removable media, such as USB drives, and exFAT is typically used for larger USB drives. You can, however, format a FAT32 or exFAT disk to NTFS (but not vice-versa) by using the Convert utility at the command line, in this manner:

C:\> Chkdsk h: /f
C:\> Convert h: /FS:NTFS

These commands change drive H: to the NTFS file system. Note that the Chkdsk utility is used first; it checks the drive and fixes any problems that may exist. The Convert utility then does the actual conversion. No data is actually lost in the conversion; it remains intact on the drive.

You can also format a FAT32 or exFAT disk or other removable media to the NTFS file system by navigating to This PC (My Computer on older Windows systems) and locate the device from the list of drives available on your system. Right-click on the drive name and select Format from the resulting Context menu. Open the drop-down list under File System and select NTFS. (See Figure 1.)

Figure 1. The Format USB dialog box.

Click Start to begin the formatting process.

 This tip (5669) applies to Windows 7, 8, and 10.

Author Bio

Barry Dysert

Barry has been a computer professional for over 35 years, working in different positions such as technical team leader, project manager, and software developer. He is currently a software engineer with an emphasis on developing custom applications under Microsoft Windows. When not working with Windows or writing Tips, Barry is an amateur writer. His first non-fiction book is titled "A Chronological Commentary of Revelation." ...

MORE FROM BARRY

Ways to Combine Two (or More) Text Files

There have probably been times when you've wanted to combine two or more text files into one. Windows provides a few ...

Discover More

Adding and Deleting Fonts

Sometimes a document you're working on needs a font different from what comes with Windows. In such a case, a simple Web ...

Discover More

Deleting a Saved Search

Windows Explorer has a good search utility built into it. As you use it, you may wish to delete a previously saved search ...

Discover More
More WindowsTips

Understanding File System Formats

When you format a disk drive, you have the option to specify what file system should be used on that drive. There are ...

Discover More

Using the ChkDsk Utility

The ChkDsk utility is a nice feature of Windows that lets you keep tabs on the health of your disk drives. This tip tells ...

Discover More

How to Encrypt a File or Folder via NTFS

Windows 10 provides two ways to password protect files and folders. One way is to use the Zip utility, as discussed in a ...

Discover More
Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 8 - 5?

2019-09-30 09:10:54

David Latham

Tip is extremely well written. Clear, concise, and comprehensive. Great Job


Newest Tips