For the past day, Windows has repeatedly shown a message saying that the Recycle Bin on my E: drive is corrupted and asking whether I want to empty it. Clicking Yes simply closes the dialog without fixing anything. The message appears whenever I start the computer or try to delete a file from E:.
I tried running `rd /s /q E:$Recycle.bin`, but Windows reported that the directory was not empty, even though the same command worked on my other drives. I also ran CHKDSK, which took about two and a half hours and reported many bad clusters. Windows still asks to check the disk every time I boot, and the scan does not seem to resolve anything. Files on E: are extremely slow to access—sometimes a video takes one or two minutes to start.
A drive-health utility reports the disk as "Good," but its real-world behavior seems seriously abnormal. Should I treat this as a failing drive? What is the safest way to protect my files and resolve the Recycle Bin problem?
2 Answers
If your files are backed up and the drive is still accessible, you can try clearing the bin through PowerShell instead of deleting the folder manually. For the E: drive, run PowerShell as administrator and use `Clear-RecycleBin -DriveLetter E -Force`. However, this is only a cleanup attempt—it will not repair bad sectors or fix a drive that is becoming unreliable.
The Recycle Bin is probably only a symptom. Bad clusters, very slow file access, repeated disk checks, and long delays opening files are all strong warning signs that the drive may be failing. Stop running CHKDSK repeatedly for now, avoid writing anything new to E:, and copy important files to a different physical drive as soon as possible. If the data is especially valuable, make a sector-by-sector image or use a professional recovery service instead of experimenting on the original disk.
A “Good” result from a drive-health tool does not guarantee that the disk is safe; it may miss developing mechanical or filesystem problems. Once your files are secure, replace the drive rather than focusing on repairing the Recycle Bin.
That’s unfortunate, but I’ll prioritize copying the important files and replacing the drive. Thanks for the warning.

I’ll try that only after making sure the important files are backed up.