A fast, native macOS disk space analyzer that makes crowded drives easy to understand. Scan folders and volumes, explore where your storage is going, compare results over time, and safely clean up — all without leaving the app. Visit the Radix website to learn more!
Storage fills up quietly. Radix makes it obvious where it went — no Terminal commands, no waiting through scans that crawl forever. Point it at a folder, sit back, and explore a clean visual breakdown of directories and files.
It's built with Swift and SwiftUI, designed to feel like a natural part of macOS.
Switch between sunburst and treemap views to understand how space is distributed. Hover over an item to inspect it, then double-click a folder to drill deeper.
| Sunburst | Treemap |
|---|---|
![]() |
![]() |
Use the sortable file table to inspect sizes, search the current folder or the entire scan, and move through the hierarchy with breadcrumbs and back/forward navigation.
Compare two scans to see which files and folders grew, shrank, appeared, or disappeared.
Add items from the disk map, file browser, or inspector to the Discard Pile. Review everything together before deciding whether to move anything to the Trash.
Export completed scans as compact, losslessly compressed exact snapshots and reopen them later as read-only results. Radix continues to open snapshots created by earlier supported versions.
- Fast, iterative file-system scanning with live progress
- Faster follow-up scans by reusing previous results when possible
- Automatic summarization of directories containing thousands of tiny files
- Custom scan exclusions for paths you do not want to include
- Optional free-space display in disk maps
- Smart Locations for mounted volumes, Home, Desktop, Documents, Downloads, Library, and Applications
- Recent scan history in the sidebar
- Detailed inspector with sizes, access information, parent directory, and largest children
- Usage stats showing scans completed, data scanned, scan speeds, chart interactions, and cleanup totals — all stored locally on your Mac
- Quick Look, Open, Reveal in Finder, Copy Path, and Move to Trash actions
- Drag and drop a folder into the window to start scanning
- Automatic updates powered by Sparkle
Radix works out of the box on any folder you can already access. For some folders, the app may require Full Disk Access. Radix detects when files are skipped due to permissions and guides you through enabling them in System Settings.
Radix requires macOS Sonoma 14 or later.
brew install --cask radixView a quick note from me, the developer behind Radix
When people began asking me to get Radix on Homebrew, I never imagined we'd get there so quickly. We only had half of the required stars, and I thought it might take a while before the project was ready.
But here we are now. Radix is on Homebrew, and it's because of your incredible support. Thank you for all the stars, comments, and feedback. Moreover, thank you for giving Radix a chance. I am so, so grateful for the positive feedback you all have given me.
I'm excited to continue improving Radix. Please keep the feedback coming, and thank you again!
Download the latest version from Releases or the Radix website, then drag Radix into your Applications folder.
View build instructions, project structure, and architecture
Building Radix requires Xcode 26 or later with a Swift 6.2 toolchain.
Clone the repository and run the Swift package tests:
git clone https://github.com/colinvkim/Radix.git
cd Radix
swift testOpen Radix.xcodeproj in Xcode to build and run the complete app, or build it from the command line:
xcodebuild \
-project Radix.xcodeproj \
-scheme Radix \
-configuration Debug \
-destination 'platform=macOS' \
buildThe SwiftPM package contains RadixCore and its tests. Use swift test to run the test suite, and use the Xcode project to build the complete app.
Radix/
├── Radix/ # App and core source code
│ ├── App/ # App entry point, commands, and window management
│ ├── Models/ # Scan targets, node records, snapshots, and safety models
│ ├── Services/ # Scanning, archives, comparison, geometry, and formatting
│ ├── ViewModels/ # Application state and UI coordination
│ ├── Features/
│ │ ├── Comparison/ # Scan comparison setup and results
│ │ ├── DiscardPile/ # Cleanup candidate review
│ │ ├── FileList/ # Sortable file browser
│ │ ├── Inspector/ # Selection details and actions
│ │ ├── Onboarding/ # First-run and permission guidance
│ │ ├── Settings/ # Scan, visualization, and app preferences
│ │ ├── Sidebar/ # Smart Locations, recent scans, and Discard Pile
│ │ ├── Visualization/ # Sunburst and treemap views
│ │ └── Workspace/ # Main scanning and exploration interface
│ └── Shared/ # Reusable SwiftUI components and helpers
├── RadixCoreTests/ # Unit, integration, and benchmark-style tests
├── Package.swift # RadixCore Swift package definition
└── Radix.xcodeproj/ # Complete macOS app project
ScanEngineis an actor-based asynchronous scanner that uses iterative file-system traversal.AppModelis the central@MainActorstate and coordination layer for the application.ScanSnapshotandFileTreeStorerepresent scan results using flat tree storage and indexed lookups.- Archive and comparison services stream, validate, and compare
.radixscansnapshots. Format v5 losslessly compresses the large node and topology sections with LZFSE while retaining v3/v4 import compatibility. - Sunburst and treemap services separate layout and interaction models from their SwiftUI presentation.
RadixCorehas no external Swift package dependencies; the app target uses Sparkle for updates.
Contributions are welcome! Here's how to get started:
- Fork the repository and create a feature branch. Before getting started, consider reviewing the developer documentation above for build instructions and an overview of the project’s structure and architecture.
- Make your changes and add or update tests where appropriate. Keep them focused and well-documented.
- Run
swift test. - Open a pull request explaining what changed and why.
Use Conventional Commits for commit messages and PR titles. If you're tackling something big, consider opening an issue first so the approach can be discussed.
Radix is available under the MIT License.


