01 Why there's no WizTree on macOS
WizTree is fast because it reads the NTFS Master File Table
directly off the disk, skipping the slow file-by-file walk most
tools do. That trick is the whole reason it can scan a drive
tens of times faster than WinDirStat. It's also the reason it
can't come to the Mac unchanged: macOS uses APFS, which has no
Master File Table to read. The fast path simply doesn't exist
there, so a native Mac tool has to earn its speed a different way.
02 Delve is the closest native equivalent
Delve gives you the WizTree experience on the Mac: point it at a
drive, get a treemap in seconds, and the biggest files and
folders are impossible to miss. It can't read an MFT that doesn't
exist, so instead it uses getattrlistbulk to pull a
whole directory of file metadata per system call rather than one
entry at a time, which is the fast path on macOS. A 1 TB
volume with a few million files finishes in well under two
minutes on a base M2, and the treemap renders on the GPU so
it stays smooth while you explore it.
| |
Delve (Mac) |
WizTree (Windows) |
| Platform |
macOS 26, Apple Silicon |
Windows only |
| Visualization |
Treemap + file list |
Treemap + file list |
| Scan speed |
Fast (bulk metadata calls) |
Very fast (reads NTFS MFT) |
| Rendering |
GPU, 60 Hz |
CPU-drawn |
| APFS clone & hardlink accounting |
Yes |
N/A (Windows) |
| Native OS integration |
Spotlight, Shortcuts, Quick Look |
Windows shell |
| Price |
Free |
Free personal, paid commercial |
03 Other Mac options
We'd rather point you somewhere useful than pretend Delve is the
only choice. GrandPerspective
is a free, open-source Mac treemap that runs on older and Intel
Macs, which Delve doesn't. OmniDiskSweeper
is a free list view if you don't need the picture.
DaisyDisk is a polished paid
sunburst at $9.99. And if you came to WizTree from
WinDirStat, that page is
worth a look too. On recent Apple Silicon, if you want WizTree's
fast-treemap workflow done natively and free, that's Delve.
The honest take
Coming from WizTree, you want speed and a treemap with no
fuss. Delve gives you both on Apple Silicon, free, even if it
reaches that speed through a different door than the MFT.
On an older or Intel Mac, GrandPerspective is the free
treemap that'll actually run for you.