Mac Storage Guide

What Is Purgeable Space on Mac and How to Delete It

DiskCompanion Engineering
DiskCompanion Engineering
8 min read
At a Glance

The Truth About Mac Purgeable Space

If you inspect your Mac storage in System Settings or Disk Utility, you will likely see a mysterious section labeled "Purgeable Space" consuming anywhere from 20GB to over 100GB. Here is what is happening:

  • The Core Problem: macOS labels this storage as purgeable because it promises to delete it when you run out of room. In reality, macOS waits until your drive is dangerously close to 0 bytes before clearing anything.
  • The Installer Conflict: Large app installers and macOS updates check raw unallocated disk blocks, ignoring Apple's purgeable promise and failing with "Not Enough Disk Space" errors.
  • What It Actually Contains: Over 80% of purgeable space is typically composed of local APFS Time Machine snapshots, font and dictionary caches, and inactive container caches.
  • The 1-Click Fix: You do not need to reboot or risk typing risky Terminal scripts. DiskCompanion's Smart Clean identifies and purges APFS snapshots and stagnant caches safely in under 30 seconds for a flat $29 lifetime license.

You open System Settings, click Storage, and notice something confusing: your Mac reports 60GB available, but right next to that number sits a footnote indicating that 45GB of it is "Purgeable." When you try to download a game, export a video project, or install an operating system update, your Mac abruptly halts with an error stating your disk is full.

This paradox is one of the most frustrating aspects of modern macOS storage management. To reclaim that trapped storage, you must understand how Apple defines purgeable data, why macOS clings to it, and how to force-free those gigabytes safely.


What Exactly Is Purgeable Space on a Mac?

Purgeable space is a storage category created by Apple alongside the introduction of the APFS (Apple File System). In simple terms, purgeable space consists of files that macOS considers convenient to keep around, but technically disposable if real physical capacity is demanded.

When you view your drive in Finder or Disk Utility, macOS frequently adds your purgeable space into its advertised "Available Space" figure. Apple's design philosophy is that users should not have to manually manage caches or backups: the operating system quietly holds onto these files until another application requests the storage blocks, at which point macOS is supposed to overwrite them seamlessly.

The Core Problem: Apple's theoretical system frequently breaks down in practice. macOS often refuses to release purgeable space until your SSD drops below 5% capacity. Many external installers, video rendering engines, and developer tools check physical free space rather than logical available space, resulting in immediate write failures.

If your Mac has entered a state where apps freeze or display out-of-storage dialogs, you are likely suffering from this exact mismatch. You can review our emergency checklist on fixing a full Mac startup disk for immediate triage steps.


Why macOS Refuses to Delete Purgeable Space Automatically

Why does your Mac stubbornly hold onto 40GB or 80GB of disposable data when you are actively trying to save new files? There are three primary engineering reasons:

  1. Performance Caching Over Pure Free Space: macOS treats unused SSD space as wasted potential. By preserving recent application caches, web assets, and temporary compile files on your SSD, apps open substantially faster than if they had to regenerate or re-download those assets from scratch.
  2. Local APFS Time Machine Checkpoints: If you have Time Machine configured, macOS generates local APFS snapshots at regular intervals. These invisible snapshots allow you to revert files even when your external backup drive is unplugged. The operating system holds onto these snapshots until they expire or storage reaches a strict emergency threshold.
  3. Aggressive Threshold Delays: The macOS automatic purging daemon (cache_delete) is deliberately tuned to be conservative. It avoids triggering disk-heavy purge cycles while your Mac is running on battery or undergoing intensive processor tasks, leading to situations where the cleanup routine never triggers in time.

What Is Actually Inside Your Purgeable Storage?

Purgeable storage is not a single giant folder on your disk. Instead, it is a collection of several distinct storage categories spread across your internal drive:

Local Snapshots 20 GB to 80 GB Typical

1. APFS Local Snapshots

Read-only point-in-time freezes of your drive made by Time Machine. Even after you empty the Trash, the underlying files remain locked inside snapshots until the snapshot itself is destroyed.

tmutil listlocalsnapshots /
Cloud Mirrors 10 GB to 50 GB Typical

2. Optimized iCloud Files

Local mirrored copies of photos, desktop folders, and documents stored in iCloud Drive. When Optimize Mac Storage is enabled, macOS treats local copies as purgeable.

~/Library/Mobile Documents/
App Buffers 10 GB to 30 GB Typical

3. System & User Caches

Temporary files generated by Spotify, web browsers, font compilers, and video editors that can be safely discarded without breaking application state.

~/Library/Caches/
System Assets 5 GB to 15 GB Typical

4. Inactive System Assets

High-resolution Siri voices, unused language localizations, system dictionary expansions, and partial update packages that macOS downloaded in the background.

/System/Library/AssetsV2/

If you are wondering whether these items overlap with the generic System Data bar, you can read our deep dive on how to clear System Data on Mac to see the full architecture breakdown.


How to Force-Delete Purgeable Space on Mac

Because macOS does not provide a simple "Delete Purgeable Space" button in System Settings, you must use one of several proven methods to trigger the release of those reserved blocks.

Method 1: The Fast 1-Click Way (DiskCompanion)

The most reliable and safe method to reclaim purgeable space without touching the command line is using DiskCompanion.

DiskCompanion interacts directly with the APFS subsystem and macOS cache registries. When you run Smart Clean, it detects active local Time Machine snapshots, measures stagnant application caches, and safely signals macOS to release those blocks immediately. Furthermore, any uninstalled app containers are swept safely to your macOS Trash with full "Put Back" restoration safety.

Method 2: Thinning APFS Snapshots via Terminal

For users comfortable with the command line, you can inspect and purge local Time Machine snapshots manually:

Terminal
tmutil listlocalsnapshots /

This command displays a list of active snapshots formatted with timestamps (such as com.apple.TimeMachine.2026-09-25-142011.local). To delete an individual snapshot, run:

Terminal
tmutil deletelocalsnapshots 2026-09-25-142011

Alternatively, you can instruct Time Machine to aggressively thin local snapshots to free a specific number of bytes (for example, 40GB):

Terminal
tmutil thinlocalsnapshots / 40000000000 4

Method 3: Optimizing iCloud Drive and Photos

If your purgeable space is dominated by synced cloud files, you can force macOS to offload local files back to the cloud:

  • Open System Settings > [Your Name] > iCloud.
  • Under iCloud Drive, ensure Optimize Mac Storage is switched on.
  • In Finder, right-click large files or folders inside iCloud Drive and select Remove Download. The files will remain safe in iCloud while instantly freeing local SSD space.

Method 4: Why You Should Avoid the "Dummy File" Hack

Some online forums recommend creating massive dummy files using Terminal (such as mkfile 50g dummyfile) to artificially force macOS into an out-of-storage state. While this does trigger Apple's cache_delete daemon, it is an aggressive brute-force trick. Creating and deleting 50GB dummy files subjects your internal SSD to unnecessary NAND write cycles and can cause running applications to crash mid-save. Using an intentional utility like DiskCompanion is substantially safer.


Ways to Clear Purgeable Space: Comparison

Here is how the primary methods of clearing purgeable storage stack up in terms of speed, safety, and thoroughness:

Method / Solution Speed Safety Terminal Required Cleans Snapshots Cleans App Leftovers
DiskCompanion Recommended < 30 Seconds 100% Trash-First No (1-Click UI) Automatic Full Uninstaller
Terminal (tmutil) 1 to 3 Minutes Requires Accuracy Yes Manual No
Waiting on macOS Days to Weeks System Native No Unpredictable No
Dummy File Script 5 to 10 Minutes Risk of App Crashes Yes Indirect No

DiskCompanion App Icon
Fast, Safe Storage Recovery

Reclaim 30GB to 80GB of Purgeable Space Now

When purgeable storage locks your Mac drive, you need an immediate solution that does not involve cryptic terminal scripts or guessing games.

DiskCompanion brings clarity and control back to your internal drive. Its concentric visual map reveals where large files hide, while 1-click Smart Clean safely thins APFS snapshots, clears stagnant application caches, and sweeps away orphaned container folders. It installs zero background monitoring daemons, has zero subscription fees, and costs just a flat $29 lifetime license for up to 3 personal Macs.

Apple Notarized • Zero Background Helpers • 14-Day Money-Back Guarantee
Frequently Asked Questions

Purgeable Space on Mac FAQ

Clear answers on APFS snapshots, purgeable storage triggers, and safe disk reclamation.

What exactly is purgeable space on a Mac?

Purgeable space consists of files and data that macOS considers non-essential. This includes local Time Machine APFS snapshots, inactive application caches, system asset buffers, and cloud-synced files that already exist in iCloud. In theory, macOS is supposed to delete these files automatically when your internal drive needs more free room.

Why does macOS refuse to clear purgeable space automatically?

macOS only initiates automatic purging when internal drive capacity drops below an emergency threshold (typically under 5% to 10% free space). Until that threshold is crossed, macOS prefers keeping local APFS snapshots and cache files intact for quick file restores and faster application launching. This causes bottlenecks when you try to install large apps or update macOS.

Is purgeable space counted as free space on Mac?

Finder often lumps purgeable space together with truly available space when displaying available capacity. However, third-party software installers, macOS system update packages, and the Mac App Store look strictly at raw unallocated storage blocks. If an installer requires 40GB but your drive only has 10GB free plus 50GB purgeable, the installer will fail with a disk full error.

Will deleting purgeable space damage macOS or delete my personal files?

No. Everything categorized as purgeable is disposable by definition. Local Time Machine snapshots are secondary local copies of backups, and system caches regenerate automatically when needed. Furthermore, modern macOS secures all fundamental operating system files on a cryptographic, read-only system volume that cannot be modified.

What is the fastest way to force macOS to clear purgeable space?

The fastest and safest approach is using DiskCompanion's 1-click Smart Clean, which detects stubborn APFS snapshots and disposable system caches without requiring Terminal commands. For command-line users, running 'tmutil listlocalsnapshots /' followed by snapshot thinning will also release snapshot-locked gigabytes.

DiskCompanion app icon

Reclaim Storage Safely. Zero Subscriptions.

Explore your Mac with the Disk Explorer visual map, clear hidden System Data caches with one safe click, and eliminate leftover files from uninstalled apps. Buy once for $29, keep it forever on up to 3 personal Macs.

Apple Notarized Zero Battery Drain 14-Day Money-Back Guarantee