How to Convert FAT32 to NTFS Without Losing Data

FAT32 is an older file system with a strict 4 GB maximum file size limit — meaning you cannot copy a single file larger than 4 GB to a FAT32 drive, even if the drive has 500 GB of free space. NTFS removes this limitation and adds security features, journaling (crash protection), and compression. Converting FAT32 to NTFS is a one-way process, but Windows includes a built-in command that does it without deleting any of your files.

Quick Answer

How do I convert FAT32 to NTFS without losing data?

Open Command Prompt as Administrator and run: convert X: /fs:ntfs (replace X with your actual drive letter). Windows converts the file system without deleting any files. The process is one-way — you cannot convert NTFS back to FAT32 without reformatting. Back up your data before converting as a precaution, even though data loss is very rare.

FAT32 vs NTFS — Key Differences

FeatureFAT32NTFS
Maximum single file size4 GB16 EB (no practical limit)
Maximum partition size8 TB (Windows limit: 32 GB format)256 TB
File permissions / securityNoneFull NTFS permissions
Journaling (crash protection)NoYes
File compressionNoYes (per file or folder)
Encryption (EFS)NoYes
Cross-platform compatibilityMac, Linux, game consoles, camerasWindows only natively
Suitable for Windows system driveNo (Windows 10/11 requires NTFS)Yes
Suitable for USB drives shared with non-WindowsYesLimited (read-only on macOS by default)
1

Back up your data (recommended)

Although the convert command preserves all files, back up important data to a second location before proceeding. Unexpected power loss during conversion in rare cases could leave the drive in an inconsistent state.

2

Identify the drive letter

Open File Explorer and note the letter assigned to the FAT32 drive you want to convert (e.g., D:, E:, or F:). Do not convert the C: drive using this method — it is already NTFS on any modern Windows installation.

3

Open Command Prompt as Administrator

Press Win + X and click "Windows Terminal (Admin)" or search for "cmd," right-click Command Prompt, and select "Run as administrator." The command requires elevated privileges.

4

Run the convert command

Type the following command (replace X with your drive letter) and press Enter: convert X: /fs:ntfs Windows will ask you to confirm the volume label (the name of the drive). Type it exactly as shown and press Enter.

5

Wait for the conversion to complete

The process takes 1–10 minutes depending on the amount of data on the drive. You will see messages like "Converting file system," "Determining disk space required for file system conversion," and finally "Conversion complete." Do not interrupt this process.

6

Verify the conversion

Open File Explorer, right-click the converted drive, and select Properties. The General tab should now show "File system: NTFS." All your files should be intact and accessible.

This is irreversible. The built-in convert command only converts FAT32 to NTFS. You cannot convert NTFS back to FAT32 without formatting the drive (which deletes all data). If you need the drive to remain FAT32 compatible for other devices, do not convert it.

Converting the C: Drive (Not Recommended)

If your C: drive is somehow still FAT32 (very rare on any system running Windows 10 or 11), converting it requires scheduling the operation for the next boot since the system drive is locked while Windows is running. The command is:

# In Command Prompt as Administrator:

convert C: /fs:ntfs

# Windows will schedule the conversion for next restart

# Restart your PC to complete the process

Windows schedules the conversion to run before the OS loads on next restart. The PC may appear to hang briefly during boot — this is normal.

1

Back up all data from the drive

Copy everything you need to another drive. Formatting permanently deletes all data — there is no recovery after this step.

2

Open Disk Management

Press Win + X > Disk Management. Locate the FAT32 drive in the disk map.

3

Right-click and select Format

Right-click the partition and choose Format. Set the File system to NTFS. Set Allocation unit size to "Default." Optionally add a Volume label. Check Quick Format for a faster process.

4

Click OK to confirm

Windows formats the partition as NTFS. All files are erased. The drive is now NTFS and ready for use.

When Should You Keep FAT32?

USB drives for cross-platform use

FAT32 is readable by Windows, macOS, Linux, PlayStation 4/5, Xbox, and most cameras. If you regularly move files between different operating systems or devices, FAT32 (or exFAT) is more compatible than NTFS.

SD cards for cameras and phones

Most cameras, action cameras, and Android phones format SD cards as FAT32 or exFAT. Converting to NTFS may cause the device to not recognize the card.

Older game consoles

PlayStation 3, Xbox 360, and many emulation-focused devices only read FAT32. NTFS drives will not be recognized.

Files smaller than 4 GB only

If your use case never involves files larger than 4 GB (e.g., documents, photos, music), FAT32 is perfectly fine and conversion is unnecessary.

Consider exFAT for large portable drives. exFAT is the modern replacement for FAT32 — it removes the 4 GB file limit while maintaining cross-platform compatibility with macOS, Linux, and most modern game consoles. If you need a portable drive larger than 32 GB to work everywhere, format it as exFAT rather than converting FAT32 to NTFS.

Frequently Asked Questions

No. The built-in Windows "convert" command specifically preserves all existing files during the conversion. Your data is kept intact. The only way to lose data is if the conversion is interrupted by a power failure or hardware error mid-process, which is why a backup beforehand is recommended even though the risk is very low.
If another program has files open on the drive, Windows may ask you to unmount it first or schedule the conversion for the next restart. For data drives (not C:), close any open files and File Explorer windows pointing to that drive. For C:, the conversion is always scheduled for next boot.
The built-in convert command typically takes 1–5 minutes for a drive with under 100 GB of data, up to 15–20 minutes for a 1–2 TB drive that is mostly full. The conversion time scales with the amount of data, not the total drive size.
This is the FAT32 file size limit. Single files over 4 GB (such as large video files, ISO images, or disk backups) cannot be stored on a FAT32 partition regardless of available space. Converting the drive to NTFS using the convert command removes this limit entirely. If the drive needs to remain cross-platform compatible, reformatting to exFAT is a better solution.
Very slightly. NTFS maintains a change journal and file permission database that FAT32 does not. In practice the difference is imperceptible for normal use. The bigger factor is the USB 3.0 vs 2.0 connection speed, not the file system.

Related Guides