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
| Feature | FAT32 | NTFS |
|---|---|---|
| Maximum single file size | 4 GB | 16 EB (no practical limit) |
| Maximum partition size | 8 TB (Windows limit: 32 GB format) | 256 TB |
| File permissions / security | None | Full NTFS permissions |
| Journaling (crash protection) | No | Yes |
| File compression | No | Yes (per file or folder) |
| Encryption (EFS) | No | Yes |
| Cross-platform compatibility | Mac, Linux, game consoles, cameras | Windows only natively |
| Suitable for Windows system drive | No (Windows 10/11 requires NTFS) | Yes |
| Suitable for USB drives shared with non-Windows | Yes | Limited (read-only on macOS by default) |
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.
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.
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.
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.
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.
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.
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.
Open Disk Management
Press Win + X > Disk Management. Locate the FAT32 drive in the disk map.
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.
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.