Best/top listicles (BOFU)

6 Best Disk Space Analyzers for Mac in 2026

You open About This Mac > Storage, see a fat "System Data" bar, and have no idea what's actually inside it. That's the gap the best disk space analyzer for Mac is supposed to fill — a clear picture of where every gigabyte lives, so you can make an informed decision about what to remove. This guide compares six real tools (treemap and list-based), explains how each handles the trickiest category — System Data and purgeable space — and helps you pick the right one for how you actually work.

What to Look for in a Mac Disk Space Analyzer

Before diving into specific tools, it helps to know what separates a useful analyzer from a pretty one:

  • Scan scope: Does it scan only your home folder, or the entire volume including system files?
  • Visualization type: Treemap (area = size at a glance) vs. sorted list (easier to read exact numbers) — both have trade-offs.
  • System Data / purgeable awareness: macOS parks a lot of space as "purgeable" (cached iCloud content, APFS snapshots, optimized storage). A good analyzer either shows this separately or accounts for it.
  • Can it delete? Some tools are read-only and hand you off to Finder. Others let you remove files without leaving the app.
  • Safety guidance: Deleting the wrong folder in ~/Library can break apps. Does the tool warn you?

The 6 Best Disk Space Analyzers for Mac in 2026

1. DaisyDisk

DaisyDisk ($9.99, App Store) is the most polished treemap-style Mac storage visualizer available. It renders your disk as a sunburst chart: rings represent directory depth, and each arc's width is proportional to its size. Scans are fast — a 1 TB drive typically completes in under a minute on an M-series Mac.

What makes DaisyDisk stand out is that you can drag files from the chart into a "collection" tray at the bottom, then delete everything in the tray in one step. It does require your administrator password for system areas. The weakness: it does not specifically surface purgeable space or APFS snapshots as a named category, so the "mystery gigabytes" in System Data are not always explained.

  • Best for: visual learners who want to spot big folders immediately
  • Limitation: read-only until you manually drag to the tray; no built-in cache/log cleaner

2. OmniDiskSweeper

OmniDiskSweeper (free, direct download from The Omni Group) is the classic column-based list tool. It shows a three-column browser — folder tree on the left, sorted file list on the right — with sizes displayed numerically. It is not fancy, but it is extremely precise and trustworthy.

The trade-off: it is read-only. When you find the offending 8 GB folder, you click "Move to Trash" and it opens Finder. Scanning large volumes is slower than DaisyDisk, and it has no concept of purgeable space. That said, it is genuinely useful for developers who want a no-frills audit of exactly what is in ~/Library/Application Support or /usr/local.

  • Best for: developers and power users who prefer sorted lists over graphics
  • Limitation: no in-app deletion, no system-cache cleaning, slow on large drives

3. GrandPerspective

GrandPerspective (free / $2.99 App Store) is an open-source treemap tool where every file is a rectangle; area equals size. It is not as polished as DaisyDisk but it has one advantage: it renders at the file level, so a single 20 GB virtual machine disk image appears as one enormous rectangle that is impossible to miss.

Like OmniDiskSweeper, GrandPerspective is mostly read-only — you can reveal in Finder or move to Trash from within the app, but there is no batch delete workflow. It also does not specifically flag purgeable or cached iCloud data.

  • Best for: finding individual large files quickly; free budget option
  • Limitation: UI is dated, no system-level cleaning, no purgeable awareness

4. Disk Diag

Disk Diag (free, App Store) is lighter than the others — it shows a categorized breakdown (Applications, Documents, Photos, etc.) with approximate sizes, and surfaces disk health S.M.A.R.T. data alongside usage. It is useful as a quick dashboard but is not a deep-dive analyzer. It does not show individual files or let you delete from within the app.

  • Best for: a fast top-level overview + disk health check in one glance
  • Limitation: no file-level drill-down, no deletion capability

5. Finder's Built-In Storage Management

Apple's own tool — Apple menu > About This Mac > More Info > Storage Settings (macOS Ventura and later) — has improved considerably. It shows a color-coded bar, lists large files, and surfaces "Recommendations" like enabling iCloud Drive optimization or emptying the Trash automatically. It is the right first stop for non-technical users.

The limitation is that it deliberately hides complexity. System Data is shown as a monolithic block with no drill-down. The purgeable portion may or may not reclaim automatically; macOS decides when. You cannot force-clear caches from this panel.

  • Best for: quick orientation; built into every Mac
  • Limitation: no drill-down into System Data, no manual cache clearing

6. Crumb

Crumb is the option on this list that combines visualization and cleaning in a single app. Its Visualize tab renders a treemap of your disk alongside a sorted largest-items list and a whole-Mac audit — similar in concept to DaisyDisk, but with one key addition: it specifically calls out purgeable space and APFS local snapshots as a named line item, so the "System Data mystery" is explained rather than just shown as a grey bar.

Where Crumb differs most from pure analyzers is what happens after you find the problem. Instead of switching to a different tool, you move to the Clean tab and reclaim system caches (~/Library/Caches), user logs (~/Library/Logs), temp files (/private/var/folders), and purgeable System Data in one click. The Uninstall tab pairs app removal with leftover-file detection, so you are not leaving orphaned support folders in ~/Library/Application Support. There is also an Is this safe to delete? AI check: select any folder and get a plain-English explanation of what it is and what the risk of removing it is — useful when you are staring at an unfamiliar path and are not sure whether to delete it.

  • Best for: users who want to find and fix the problem without switching apps; whole-Mac purgeable-space awareness
  • Pricing: free tier includes one cleanup; $49 one-time lifetime or $8.99/month

Side-by-Side Comparison

Tool Visualization In-app deletion System Data / purgeable Cache cleaning Price
DaisyDisk Treemap (sunburst) Yes (tray workflow) Not specifically surfaced No $9.99
OmniDiskSweeper Sorted list Reveal in Finder only No No Free
GrandPerspective Treemap (rectangles) Move to Trash only No No Free / $2.99
Disk Diag Category summary No No No Free
Finder Storage Color bar + large files Limited Partial (Recommendations) No Built-in
Crumb Treemap + sorted list Yes (full Clean tab) Named + cleanable Yes Free / $49 lifetime

How to Manually Audit Your Mac Storage (No Extra Tools)

If you want to do a basic audit yourself before downloading anything, these Terminal commands are a reliable starting point on macOS 12 Monterey through macOS 26:

  1. Check overall disk usage:
    df -h /
    This shows total, used, and available space on your root volume.
  2. Find the largest directories in your home folder:
    du -sh ~/Library/* 2>/dev/null | sort -rh | head -20
    Sorts by size, descending. The top results are your best leads.
  3. Inspect caches specifically:
    du -sh ~/Library/Caches/* 2>/dev/null | sort -rh | head -10
  4. Check for APFS local snapshots (time machine snapshots stored locally):
    tmutil listlocalsnapshots /
    If you see a long list of dated snapshots, macOS is holding onto Time Machine backups locally. These count toward System Data and are released automatically when disk pressure mounts, but you can delete them manually with tmutil deletelocalsnapshots <date>.

What Is Safe to Delete — and What Is Not

This matters because cleaning is permanent (unless you empty the Trash later). Here is a practical breakdown:

  • Safe to clear: ~/Library/Caches — app cache folders rebuild themselves on next launch. ~/Library/Logs — crash logs and diagnostic data; removing them has no functional effect. /private/var/folders — temporary system files; macOS recreates them as needed.
  • Use caution: ~/Library/Application Support — this is where apps store settings, databases, and user data. Deleting a folder here for an app you still use will likely wipe its settings or saved data.
  • Do not delete: /System, /Library (root-level), /usr — these are macOS internals. Removing files here can make your Mac unbootable. macOS System Integrity Protection (SIP) blocks most writes here anyway, but not all.
  • Think before deleting: Large files in ~/Movies, ~/Downloads, or an old virtual machine disk image in ~/Documents are usually safe to remove, but verify you do not need them first.

When in doubt, the Is this safe to delete? check in Crumb explains any folder's purpose and risk level in plain English before you act — a useful safety net when you are exploring unfamiliar paths deep in your Library.

Which Tool Should You Use?

The right answer depends on what you need from a Mac storage visualizer:

  • If you want the best pure visualization experience and enjoy browsing a sunburst chart, DaisyDisk is the benchmark.
  • If you prefer raw sorted numbers and work in Terminal regularly, OmniDiskSweeper is free and reliable.
  • If you need to find one enormous rogue file fast, GrandPerspective's flat treemap surfaces it immediately.
  • If you want to understand and fix your storage in one session — including caches, purgeable System Data, and app leftovers — without jumping between tools, Crumb covers that workflow end to end.

A disk space analyzer's job is to give you clarity, not just pretty charts. The best one is whichever helps you answer "what is actually taking up space on my Mac?" and then act on the answer without friction. You can download Crumb and run a free whole-Mac scan to see where your gigabytes are going.

Reclaim your disk in one click

Crumb audits your whole Mac, tells you what's safe to delete, and frees the space in seconds — private, local, and Apple-notarized.

Download Crumb for macOS

Frequently asked questions

What is the best free disk space analyzer for Mac?
OmniDiskSweeper and GrandPerspective are both free and genuinely useful. OmniDiskSweeper shows a precise sorted list of file sizes; GrandPerspective renders a treemap where area equals size, making large files impossible to miss. Neither can clean what they find — they hand you off to Finder for deletion.
Why does System Data take up so much space on Mac, and can I reduce it?
System Data in macOS combines several categories: APFS local Time Machine snapshots, iCloud cached content, system caches, logs, and 'purgeable' space that macOS holds but can release under disk pressure. Most pure disk analyzers show it as one block without explaining it. To reduce it, you can delete local snapshots via Terminal (`tmutil deletelocalsnapshots`), clear caches in ~/Library/Caches, or use a tool like Crumb that surfaces and cleans purgeable space directly.
Is it safe to delete files found by a disk space analyzer?
It depends entirely on which files you are deleting. Cache folders in ~/Library/Caches, crash logs in ~/Library/Logs, and temp files in /private/var/folders are generally safe — apps recreate them automatically. Files in ~/Library/Application Support store app data and settings, so deleting them for an app you still use will likely break its preferences or saved state. Never delete anything in /System or root-level /Library. When uncertain, use the 'Is this safe to delete?' check in Crumb or search the specific path before removing it.
Does DaisyDisk or GrandPerspective show purgeable space on Mac?
Neither DaisyDisk nor GrandPerspective specifically labels purgeable space or APFS local snapshots as a named category. They show the raw file system, so purgeable content may appear scattered across folders without clear identification. Apple's built-in Storage Settings (About This Mac) mentions purgeable space in its Recommendations panel but does not let you force-clear it. Crumb explicitly names and cleans purgeable space as part of its System Data cleanup.