Disk Space Still Shows Used After Deleting Files

Hardware – Hard Drives Beginner 👁 8 views 📅 Jun 20, 2026

Deleted files but Windows still says drive is full. Usually a recycle bin or shadow copy issue. Here's the real fix.

You delete a 20GB movie file from your D drive. You empty the recycle bin. But Windows still shows the same used space. The progress bar in Explorer hasn't budged. This usually happens right after a big file delete, often on drives near 90% full. I've seen this on Windows 10 and 11, mostly with NTFS drives. The panic is real — you think your drive is dying. It's not. It's just Windows being stubborn about updating.

Why This Happens

The culprit here is almost always the recycle bin or Volume Shadow Copies. When you delete a file normally, it goes to the recycle bin. But the space isn't freed until you empty the bin. Thing is, Windows doesn't always refresh the free space display immediately. It can take a few seconds or even a minute. If it still shows wrong after 5 minutes, it's likely shadow copies holding the space.

Shadow copies are system restore snapshots. They keep old versions of files. When you delete a big file, the shadow copy system might still hold onto it. This is common on drives with System Restore turned on. I've also seen this with antivirus software locking the file briefly. Don't bother rebooting first — it rarely helps. The real fix is clearing the recycle bin properly and trimming shadow copies.

Fix 1: Properly Empty the Recycle Bin

Don't just right-click the bin icon and click "Empty Recycle Bin". That sometimes misses files. Do this:

  1. Open File Explorer. Right-click the problematic drive (like D:).
  2. Click Properties. Go to the General tab.
  3. Look for a button that says Disk Cleanup. Click it.
  4. In Disk Cleanup, check Recycle Bin if it's not already checked.
  5. Also check Temporary files and Thumbnails.
  6. Click OK and confirm. This forces Windows to really clear the bin.

After that, right-click the drive in Explorer and hit Refresh (or press F5). If the space updates, you're done. If not, move to Fix 2.

Fix 2: Clear Volume Shadow Copies

This is the real fix for most cases where the drive still shows full after deleting big files. Shadow copies can reserve up to 10% of your drive by default.

  1. Open a command prompt as Administrator. Right-click Start menu, choose Command Prompt (Admin) or Terminal (Admin).
  2. Type this command and press Enter:
    vssadmin delete shadows /for=D: /all
    Replace D: with your drive letter. Be careful — this deletes all restore points on that drive.
  3. It will ask for confirmation. Type Y and hit Enter.
  4. Wait for it to complete. Then run vssadmin list shadows to confirm nothing's left.

Now check your free space. Should jump right up. If you want to keep some restore points but free space, reduce the shadow copy space instead:

vssadmin resize shadowstorage /for=D: /on=D: /maxsize=5GB

This limits shadow copies to 5GB on that drive. Adjust the number to your needs.

Fix 3: Check for Hidden System Files

Sometimes the file isn't actually deleted. It could be hidden or moved to a system folder. This is rare but I've seen it happen with antivirus quarantine.

  1. In File Explorer, click View tab, then check Hidden items.
  2. Uncheck Hide protected operating system files. It'll warn you — say Yes.
  3. Look for a folder called $Recycle.bin on the drive root. Right-click and check its size. It should be small.
  4. Also check System Volume Information folder. That's where shadow copies live.

If you see a huge file in $Recycle.bin, you might have a corrupt bin. Try running rd /s /q D:\$Recycle.bin in admin command prompt. Windows will recreate it automatically.

If It Still Fails

If none of that works, run chkdsk D: /f to check for file system errors. Corrupt MFT entries can mess up free space reporting. Also check if you have a second antivirus program running — I've seen Norton and McAfee hold files indefinitely.

Last resort: use TreeSize Free or WinDirStat. These tools scan the drive and show you exactly where the space is. If they show free space correctly, it's just Windows Explorer bugging out. A reboot fixes that.

Pro tip: If the drive is an SSD, don't run defrag. It's pointless and might wear it down. Focus on the fixes above.

Was this solution helpful?