Why will a large file not copy to my USB stick?
The stick is not full — its format has a 4 GB ceiling per file. Which format to change to depends entirely on what has to read the drive.
- Difficulty
- beginner
- Time
- 20 min
- Read
- 4 min
- Safety
- caution
Short answer
Almost certainly FAT32, which cannot hold a single file of 4 GB or more no matter how much space is free. It is a limit of the format, not the stick. Reformat to exFAT if the drive must work on both Windows and Macs, NTFS if it is Windows-only, or APFS if it is Mac-only. Copy everything off first — formatting erases the drive. If the drive must be read by a TV or a car, check what it supports, because many only read FAT32.
This is one of the tidiest problems in computing: a single number explains it, and one decision fixes it. The only real judgement is which format to choose, and that depends on what has to read the drive rather than on which is technically best.
Safety
Step by step
- Confirm the format.Look at the drive's properties or information panel. If it says FAT32, the 4 GB ceiling is the answer — strictly, one byte under 4 GB is the largest file it can hold. A message about the file being too large for the destination file system is the same thing said differently.
- Understand why sticks arrive this way.FAT32 is readable by essentially everything ever made — computers, televisions, car stereos, cameras, printers, games consoles. Manufacturers ship it for that reason, and the ceiling is the price.
- Decide what has to read the drive.This is the whole decision. Both Windows and Macs: exFAT. Windows only: NTFS. Mac only: APFS, or the older Mac format for compatibility with old machines. A television, car or older device: check its manual, because many read only FAT32 and some read exFAT.
- Copy everything off first.Formatting erases the drive completely. Copy the contents to a folder on your computer and open a couple of files to confirm the copy is real before you proceed.
- Format it.Use the operating system's own disk tool, choose the format you decided on, and use a quick format. Give the drive a sensible name while you are there — unnamed drives are hard to identify later.
- Copy the files back.Then test the large file specifically, and test the drive in whatever device it needs to work with before you rely on it.
- Know the alternative if you cannot reformat.If the drive must stay FAT32 for a device that needs it, split the file into parts with compression software, which produces several files under the limit that recombine on the other machine. Clumsy but effective, and the standard answer for video files going onto a device that only reads FAT32.
- Note the other limits while you are here.exFAT has effectively no practical file size limit and no journalling, so it is more vulnerable to corruption if a drive is pulled out mid-write. NTFS is robust and read-only on Macs without extra software. APFS is not readable by Windows without extra software. There is no format that is best at everything, which is why the question is what has to read it.
If it doesn't work
File is too large for the destination file system
Cause: FAT32's 4 GB per-file ceiling — Fix: Reformat to exFAT or NTFS, or split the file. Buying a larger stick changes nothing.
Mac can read the drive but not write to it
Cause: The drive is NTFS, which macOS reads but does not write to by default — Fix: Reformat to exFAT if both platforms need to write, or install third-party NTFS support if the drive must stay NTFS.
Television or car stereo will not see the drive
Cause: It supports only FAT32, or only certain capacities — Fix: Format the drive FAT32 and split large videos, or use a smaller stick if the device has a capacity limit. The device's manual is the authority.
Drive shows the wrong capacity after formatting
Cause: A leftover partition from a previous use, common on drives made bootable for an installer — Fix: Use the disk tool to delete all partitions and create a single new one, rather than reformatting the existing partition.
exFAT drive became unreadable after being unplugged
Cause: exFAT has no journalling and is vulnerable to interrupted writes — Fix: Run the file system check. Eject properly in future, and prefer NTFS or APFS where the drive only ever meets one platform.
Questions people ask
Will a bigger USB stick fix it?
No. The limit belongs to the format, not to the capacity. A 512 GB stick formatted FAT32 still refuses a 5 GB file.
Is exFAT reliable enough for important files?
It is fine for transfer and adequate for general use, but it lacks the journalling that lets NTFS and APFS recover cleanly from an interrupted write. For a drive holding anything important, prefer the native format of the platform it lives with.
Can I change the format without erasing?
There are conversion tools for some combinations and they carry real risk. With a backup already made, reformatting is faster and safer.