Home  ›  Articles

Purgeable Space: The Storage Your Mac Says You Have

Updated 2026-07-26  ·  3 min read

Finder says you've 90 GB free. A disk tool says 12 GB. Neither is lying, the gap is purgeable space, and understanding it explains most confusing storage numbers on modern Macs.

Purgeable space is storage that's occupied right now but that macOS believes it can reclaim on demand. Apple counts it as available, because from the operating system's point of view it effectively is. Most third-party tools count it as used, because from the file system's point of view it is.

What macOS considers purgeable

Why two tools give you two different answers

Run df -h in Terminal and compare it to Finder. They will frequently disagree by tens of gigabytes. Finder is showing you available-including-purgeable. df is showing you what's unallocated.

Neither number is wrong. They answer different questions: “how much can I probably use?” versus “how much is free?”

Where it bites Purgeable space is reclaimed on demand, not in advance. If an installer or a video export needs 40 GB in one contiguous operation, macOS may not free the snapshots quickly enough, and the operation fails with a disk-full error while Finder insists you've plenty of room. This is the single most common cause of "I have space but it says I don't".

How to see the real number

The real figure comes from Terminal:

df -h /

The Avail column is free space. To see how much of the gap is snapshots:

tmutil listlocalsnapshots /

Each snapshot listed is holding storage that Finder is counting as yours.

Forcing macOS to release it

You can't delete purgeable space directly, and you should be sceptical of any tool claiming a magic button for it. What works:

  1. Restart. Clears swap and prompts snapshot thinning.
  2. Thin snapshots explicitly with tmutil thinlocalsnapshots / 10000000000 4, which asks macOS to free roughly 10 GB at urgency level 4.
  3. Turn off “Optimise Mac Storage” temporarily if iCloud eviction is confusing your numbers.
  4. Create genuine pressure. macOS reclaims aggressively when it truly needs to. Counter-intuitively, the system is usually right to wait.

The short conclusion

Purgeable space is a good feature that communicates badly. On a healthy Mac with reasonable headroom, ignore it, macOS is managing storage exactly as designed. Chase it only when you're hitting real disk-full errors, and then attack the underlying cause: genuine files you no longer need.

Find the space that's yours to reclaim

CleanMachine's Space Visualizer maps real allocated storage, not purgeable estimates, so you can see the actual files and folders taking up your disk. Free to scan.

↓ Download Free & Scan

If your storage problem persists after a restart, the cause is almost never purgeable space. It is usually old iOS backups, duplicate files, or an app cache that has grown to an unreasonable size. All of which are visible if you look at the disk directly.

Common questions

Can I delete purgeable space on Mac?
Not directly. macOS reclaims it automatically when space is needed. You can encourage it by restarting, or thin Time Machine local snapshots with tmutil thinlocalsnapshots.
Why does Finder show more free space than df?
Finder counts purgeable space as available; df counts only unallocated blocks. The difference is usually Time Machine local snapshots and iCloud-optimised files.
Is purgeable space a bug?
No. It is intended behaviour that lets macOS use idle storage for snapshots and cached iCloud files. It becomes a problem only when an operation needs a large amount of space faster than macOS frees it.
Why do I get disk full errors when I have free space?
Because much of that free space is purgeable and can't be released fast enough for a single large write. Restarting and thinning snapshots usually resolves it.

Keep reading