If you have ever opened About This Mac, clicked Storage, and noticed a pale yellow or white slice labeled "Purgeable" sitting alongside your used space, you are not alone in wondering what it actually means. Understanding what purgeable space on a Mac is — and why macOS keeps it around — explains why the free-space number your Finder reports is almost always misleading.
What Is Purgeable Space? The Plain-English Definition
Purgeable space is disk space that macOS has already claimed for something — cached files, local iCloud copies, Time Machine snapshots — but has agreed to give back to you automatically the moment an app genuinely needs it. Think of it as a holding area: the files in it are real and on your SSD right now, but macOS treats them as dispensable. If you try to save a 10 GB video and your SSD only has 4 GB "available" (plus 8 GB purgeable), macOS will quietly delete enough purgeable content to make room before it ever shows you an "out of space" error.
The purgeable space meaning, in short: space that is occupied but evictable on demand.
What Fills Purgeable Storage?
Three main sources account for most purgeable storage on a typical Mac:
- iCloud Drive local copies. When Optimize Mac Storage is on (System Settings → Apple ID → iCloud → iCloud Drive), macOS keeps full local copies of recent files but marks older ones as evictable once they have been safely uploaded. The file icon stays in Finder, but the bytes on disk are purgeable.
- Local Time Machine snapshots. If you use Time Machine, macOS takes hourly snapshots and stores them locally until your backup drive connects. These snapshots can run into tens of gigabytes on a busy machine and appear as purgeable space.
- System caches and temporary files. macOS aggressively caches app data, GPU shaders, fonts, and browser assets in
~/Library/Cachesand/Library/Caches. Once cache files age out or their parent app no longer needs them, they become purgeable.
Why the "Available" Number in Finder Is Misleading
Here is the crux of the confusion: Finder's Get Info window shows Available space that does not include purgeable space. The Storage pane in System Information shows both. So you might see:
| Where you look | What it shows | Includes purgeable? |
|---|---|---|
| Finder → Get Info on disk | Available | No |
| About This Mac → Storage | Used + Purgeable breakdown | Yes (separate slice) |
Terminal: df -h |
Available column | No |
Terminal: diskutil info / |
Container Free Space | Yes (combined) |
This is why a Mac with 512 GB SSD might report only 14 GB available in Finder but actually have 30 GB of combined free+purgeable space that apps can use. macOS is not hiding space from you — it is using it opportunistically and will reclaim it when needed.
How to See the Real Numbers in Terminal
The most accurate command for understanding your actual headroom is diskutil info:
diskutil info / | grep -E "Free Space|Purgeable"
You will see lines for "Volume Free Space" and "Volume Purgeable Space" separately. To see total APFS container availability (which does include purgeable), use:
diskutil info disk1 | grep -E "Free Space|Purgeable"
(Replace disk1 with your actual container disk identifier, which you can find by running diskutil list.)
For Time Machine snapshots specifically — often the largest contributor on laptops — list them with:
tmutil listlocalsnapshots /
And delete all local snapshots with:
sudo tmutil deletelocalsnapshots /
Be aware that deleting local snapshots removes your ability to restore to those points until your next scheduled backup to an external drive completes. It is safe in most cases, but the deletion is permanent.
Should You Force-Clear Purgeable Space?
Usually, no — macOS handles it automatically and well. The system will purge what it needs when it needs it, prioritizing older and less-used data. Forcing a purge yourself makes most sense when:
- You are about to do a large Xcode build or Final Cut Pro render and want every byte available upfront.
- A third-party tool reports misleading free space and you want a clean baseline.
- You are selling or migrating the Mac and want an accurate picture of actual usage.
If you want to see exactly what is purgeable versus genuinely free, and optionally force it to clear, Crumb shows both numbers side-by-side in its Visualize view — so you are never guessing which slice of your storage is actually yours to use. Its one-click Clean also targets system caches, logs, and temp files in ~/Library/Caches, /Library/Caches, and /private/var/folders, which overlaps with the cache layer of purgeable space.
What Is Safe to Delete Versus What to Leave Alone
Not all purgeable content is equally safe to delete manually:
- Safe: User cache files in
~/Library/Caches— apps rebuild them on next launch. Deletion causes a slower first launch but no data loss. - Safe with caveats: Local Time Machine snapshots — safe to delete if your backup drive is connected and a current backup exists.
- Leave alone: iCloud Drive local copies — let macOS manage these. Manually deleting them can cause sync confusion. Use the iCloud settings to toggle Optimize Storage instead.
- Do not touch: APFS snapshot infrastructure files in
/.Spotlight-V100,/.fseventsd, or inside/System/Volumes— these are system-managed and are not user-accessible anyway on a sealed system volume.
If you are unsure about a specific folder, macOS provides no built-in explanation. Crumb's "Is this safe to delete?" AI can explain what any folder is for and what the risk of removing it actually is — useful before you delete something you will regret. You can download Crumb and run a free cleanup to see exactly where your storage is going.
Mac Purgeable Storage Explained: The Short Version
Purgeable space is not wasted space and it is not a bug — it is macOS being smart about an SSD that cannot grow. The system pre-fills your disk with useful cached content and promises to evict it the moment a real app needs the room. The confusion arises because different tools report the numbers differently, making your Mac look fuller or emptier than it truly is.
For day-to-day use, trust macOS to manage purgeable space on its own. If your disk genuinely feels tight — not just reported tight — that is the time to look more carefully at what is actually consuming space, starting with ~/Library/Caches, large downloads, and any apps you installed and forgot about. Understanding what is purgeable versus truly occupied is the first step to cleaning with confidence rather than anxiety.