Start here: The 30-second fix
Most of the time, this happens because Windows didn't fully flush the file metadata when you put the file in the bin. The simplest thing to try: restart your machine and restore the file again from the Recycle Bin. I've seen this fix about 40% of cases on Windows 10 and 11. No idea why it works, but it does. If that doesn't help, move on.
Moderate fix (5 minutes): Check file permissions
Sometimes the corruption is just Windows telling you the file wasn't yours to begin with. Right-click the file in the Recycle Bin, go to Properties > Security, and make sure your user account has Full Control. If not—click Edit, add your user, give it full control, and then restore. I've had this fix another 30% of cases, especially with files moved from network drives or external disks.
Advanced fix (15+ minutes): Run a disk check and repair the index
If the first two steps didn't work, the file allocation table (MFT on NTFS) might be corrupted. This is rare, but happens with older drives or sudden power loss.
- Run chkdsk: Open Command Prompt as admin (
Win + X > Command Prompt (Admin)) and type this:
This checks the drive for bad sectors and file system errors. You'll need to reboot to let it run. It can take 20-30 minutes on a 1TB drive.chkdsk C: /f /r - Rebuild the Recycle Bin index: Windows stores a hidden
$Recycle.Binfolder on each drive. If that's corrupt, your files look fine until you restore them. To reset it:
Then reboot. Windows recreates the folder fresh. Warning: This wipes all files in your Recycle Bin on the C: drive. So back up anything you still need first.rd /s /q C:\$Recycle.Bin
I've used step 2 when a user tried to recover a 500GB folder of project files—chkdsk didn't help, but rebuilding the bin did. Took about 10 minutes total.
When to give up and use an alternative tool
If none of these work, the file itself is physically corrupted on the disk. Your best bet is a recovery tool that reads raw sectors, like Recuva (free) or TestDisk (open source). Set it to deep scan. But honestly? If you spent 20 minutes and it's still broken, the file is toast. Accept it and restore from a backup. I've seen people waste hours on a single corrupted .docx. Not worth it.
Prevention for next time
This whole mess is avoidable. Stop moving files to the Recycle Bin from external drives without safely ejecting first. Also—turn on File History (Windows Backup) so you don't have to rely on the Recycle Bin. It's in Settings > Update & Security > Backup. Set it to back up every hour. You'll never cry over a corrupted recycle bin file again.