FAT32 4 GiB file limit - why large videos fail on USB
FAT32 refuses any single file larger than 4 GiB minus 1 byte (4,294,967,295 bytes), so a 4.7 GB video or disk image fails to copy even when the USB stick still shows free space. Reformat to exFAT or NTFS to remove the ceiling, or split the payload into smaller pieces with a ZIP file tool.
Last reviewed: 2026-07-18
freetoolonline.com Editorial TeamWhat happened
Microsoft's file-system comparison table lists FAT32's maximum file size as 4 GiB. That ceiling comes from a 32-bit file-length field in the FAT directory entry, so the largest legal size is 2^32 - 1 bytes - not a round 4,294,967,296. The volume itself can be much larger; the per-file cap is separate from how much free space the stick reports. exFAT and NTFS both advertise a theoretical max file size of 2^64 - 1 bytes in the same Microsoft table, which is why reformatting the same stick usually makes the copy succeed.
Checked against Microsoft Learn (File System Functionality Comparison) and the FAT family documentation on 18 July 2026:
| File system | Max single-file size | Typical USB use |
|---|---|---|
| FAT32 | 4 GiB - 1 byte | Default on many cheap USB sticks and camera cards |
| exFAT | 2^64 - 1 bytes (practically unlimited for media) | Cross-platform large-file USB / SD |
| NTFS | 2^64 - 1 bytes | Windows-native external drives |
The limit has been part of FAT32 since the mid-1990s design. It still bites in 2026 because retailers keep shipping FAT32-formatted sticks for maximum device compatibility, while everyday files - 4K video, Windows ISOs, game installers - routinely exceed 4 GiB.
Why it matters for everyday files
Why it matters for everyday files: the error message often says the stick is full when it is not. The OS is rejecting one oversized file, not the free-space total. That mismatch shows up when moving a camera dump, copying a game ISO for a friend, or saving a long screen recording straight to USB. Devices that only speak FAT32 (some TVs, car stereos, older cameras) cannot read an exFAT or NTFS stick without a reformat, so the format choice is a trade-off between large-file support and widest playback compatibility.
What to do with your files right now
If a copy fails around the 4 GiB mark on a stick that still shows free space, these options cover the usual cases:
- Split the payload into ZIP parts under 4 GiB. The ZIP file tool can pack a large folder into an archive you can size-check before the USB copy.
- Extract archives on a full-size drive first. The unzip file tool and the extract ZIP RAR 7Z guide keep the expand step off the limited stick.
- Reformat the stick to exFAT when every device in the path supports it. That removes the 4 GiB ceiling while staying usable on current Windows, macOS, and many cameras.
- Use NTFS when the stick stays in a Windows-only workflow. Same large-file headroom; weaker support on locked-down TVs and some consoles.
Why Windows 11 won't format big drives as FAT32
Right-click a drive in File Explorer, choose Format, and Windows 11 only lists FAT32 as an option for volumes up to 32 GB - above that size the dropdown offers NTFS and exFAT only. That 32 GB ceiling comes from Windows' own Format dialog and the format command line tool, not from the FAT32 file system itself, which can address volumes up to 2 TB. A third-party FAT32 formatter can bypass the Windows GUI restriction and create a larger FAT32 volume, but the separate 4 GiB per-file cap described above still applies once the drive is formatted - reformatting past 32 GB fixes the volume-size question, not the single-file question.
You no longer need a third-party formatter for the volume-size half of that workaround: Windows 11 Insider builds since April 2026 raise the built-in Command Prompt format command's own FAT32 ceiling to 2 TB, while File Explorer's dialog keeps the old 32 GB cap. See Windows 11 Insiders can format FAT32 volumes up to 2 TB for the build numbers and what the change does not fix (the 4 GiB per-file limit above still applies).
Frequently Asked Questions
Why doesn't Windows 11 show FAT32 as an option when formatting a large USB drive?
Windows 11's built-in Format dialog and the format command only offer FAT32 for volumes up to 32 GB. That is a Windows-imposed ceiling, not a limit of the FAT32 file system itself, which can address volumes up to 2 TB; above 32 GB, Windows only lists NTFS and exFAT.
What is the FAT32 maximum file size in bytes?
4,294,967,295 bytes, which is 4 GiB minus 1 byte. The FAT directory entry stores each file's length in a 32-bit field, so 2^32 - 1 bytes is the largest value that field can hold.
Will reformatting my USB stick to exFAT delete my files?
Yes. Formatting a drive to exFAT, NTFS, or any other file system erases its existing directory structure, so back up every file you need before you reformat.
Why do cameras and dash cams still use FAT32 if the file size limit is so small?
Many recording devices default to FAT32 because it is the most widely supported file system across older TVs, car stereos, and game consoles. Manufacturers trade the 4 GiB per-file cap for that compatibility, which is also why some cameras split long recordings into several video files instead of one continuous file.
Does macOS or Linux have the same FAT32 4 GiB file limit as Windows?
Yes. The 4 GiB per-file cap is part of the FAT32 file system specification itself, not a Windows-only restriction, so copying a file larger than 4 GiB onto a FAT32-formatted drive fails the same way on macOS and Linux.
Sources
- Microsoft Learn - File System Functionality Comparison (checked 2026-07-18)
- Microsoft Learn - exFAT specification
- Wikipedia - File Allocation Table (FAT32 max file size = 4,294,967,295 bytes)
- Microsoft Support - Limitations of the FAT32 file system (32 GB Windows-format ceiling)