Mac App StoreApp StoreBeta
AppVaultNEW
Mac App StoreApp StoreΞ²

Your Cart

0 items

Your cart is empty

Add items to get started

Loading...

KeyKeeper
KeyKeeper

License key manager

$19.99
KeyKeeper
KeyKeeperby BundleHunt

Store & sync your license keys securely

EncryptediCloud Sync
$19.99
One-time
// For Developers

Submit Your App to BundleHunt

Join TheAppSquad β€” we partner with professional Mac developers to bring their apps to thousands of users.

Apply to Join

Premium Mac software at prices you'll love. Curated bundles, exclusive deals, instant delivery.

// Stay in the loop

// shop

  • Bundles
  • Mac App Store
  • AppVaultNEW

// Company

  • About Us
  • Affiliates
  • Contact
  • Blog

// Support

  • FAQs
  • Help Center
  • Privacy Policy
  • Terms of Service

Secure Checkout

256-bit SSL

Licensed Software

Official keys

Instant Delivery

Download now

Expert Support

Real humans

Β© 2026 BundleHunt, LLC. All rights reserved.
// Secured by
PrivacyTermsContact
Homeβ€ΊBlogβ€ΊDisk Spaceβ€ΊHow to Free Up Disk Space on Mac in 2026 (The Complete Guide)
// mac storage// pillar

How to Free Up Disk Space on Mac in 2026 (The Complete Guide)

BundleHunt Mac Optimization TeamΒ·Published May 17, 2026

// table of contents

The 10 disk space sinksFree 30-minute cleanupSafe β€” review and delete obvious clutter firstReview-first β€” caches and logsAdvanced β€” APFS local snapshots (do not do without backup)Mac cleanersDuplicate and file toolsFile management utilitiesmaFileRenamer β€” batch rename for storage organizationRenameMe β€” simple drag-and-drop batch renamingRecovery, clone, erase, and storage expansionDonemax NTFS for Mac β€” read and write Windows drivesMountain Duck 5 β€” mount cloud storage as a local driveChild posts {#child-posts}Sources

// 10-second answer

Start by measuring where space is used. Local snapshots are one possible cause, not junk to delete first. The paid tools in this guide solve the cases the free path can't β€” sandboxed container caches, duplicate content across drives, and permanent file erasure before selling.

  1. Has your Mac been "full" for weeks despite deleting files?
  • Does About This Mac show a large "System Data" bar you can't explain?
  • Do you want scheduled, automatic cleanup without running Terminal?
  • Are you migrating to a larger drive or preparing to sell your Mac?
  • 1+ yes β†’ read this guide in full Β· 0 yes β†’ open About This Mac > Storage, identify the largest category, and act there first

    // jump to

    • 10 storage sinks
    • Free cleanup
    • Mac cleaners
    • Duplicate tools
    • File management
    • Recovery & clone
    • Full cluster

    Before running any cleanup commands, check what is actually using space:

    # Measure free space first
    df -h /
    

    Open About This Mac > Storage to see a breakdown by category. Use this to identify which areas are genuinely large on your Mac before acting.

    Disclosure: BundleHunt sells many of the apps linked in this guide and earns a commission. Free alternatives are listed first throughout.

    The 10 disk space sinks

    macOS hides storage in 10 specific places. Measure your Mac first using About This Mac > Storage β€” amounts vary significantly by Mac and usage pattern.

    Each row below maps to a free Terminal command and a child post with the full walkthrough.

    • 1. APFS local snapshots β€” tmutil listlocalsnapshots / to see them. Amount varies; check before acting. See the Advanced section below before thinning snapshots.
    • 2. System Data β€” catch-all β€” About This Mac > Storage. Mostly caches, logs, and snapshots misattributed to "System." Amounts vary significantly; measure your Mac first. See How to Clean Mac Caches Safely.
    • 3. App + user caches β€” du -sh ~/Library/Caches/. Amounts vary by apps installed and usage.
    • 4. Downloads folder β€” du -sh ~/Downloads/. Usually half DMGs from apps you already installed. See How to Clean Downloads Folder.
    • 5. Photos library β€” Can be the largest consumer on personal Macs, but amount depends heavily on your library size and iCloud settings. See How to Clean Photos Library on Mac.
    • 6. Old iOS device backups β€” ~/Library/Application Support/MobileSync/Backup/. Delete via Finder > your device > Manage Backups. Amount varies per device.
    • 7. Spotlight metadata index β€” du -sh /System/Volumes/Data/.Spotlight-V100. See the caveat in the section below before deleting.
    • 8. Oversized PDFs β€” Spotlight: kind:pdf size:>50mb. Compress copies first, compare visual quality, and keep the original until you know the reduced version is acceptable.
    • 9. Duplicate files β€” Require a content-hash scan to find. Amount varies; Finder's filename matching misses renamed copies.
    • 10. Orphaned app data β€” Dragging an app to Trash leaves ~/Library/Application Support/, ~/Library/Containers/, and ~/Library/Preferences/ files behind.

    Free 30-minute cleanup

    These built-in checks find the biggest cleanup wins without spending anything. Inspect first, then delete only the folders you understand.

    Work through these in order β€” safest first, advanced last.

    Safe β€” review and delete obvious clutter first

    # 1. Check free space baseline
    df -h /
    
    # 2. See what's in Downloads before deleting
    du -sh ~/Downloads/
    ls -lhS ~/Downloads/ | head -30
    
    # 3. Empty Trash through Finder (files there still count against you)
    open ~/.Trash
    

    Safety level: safe. Reviewing Downloads and emptying Trash carries no risk.

    Review-first β€” caches and logs

    # 4. Preview user caches before deleting specific app folders
    du -h -d 1 ~/Library/Caches | sort -hr | head -20
    
    # 5. Preview system caches (needs sudo for full visibility)
    sudo du -h -d 1 /Library/Caches 2>/dev/null | sort -hr | head -20
    
    # 6. Preview user logs
    du -h -d 1 ~/Library/Logs 2>/dev/null | sort -hr | head -20
    

    Safety level: review-first. Caches rebuild on next app launch, but review the list before deleting β€” some folders (e.g., app-specific caches for video editors) may contain work-in-progress data.

    Advanced β€” APFS local snapshots (do not do without backup)

    Prerequisites before thinning snapshots:

    1. Confirm you have an external backup or Time Machine backup on a separate drive.
    2. List snapshots first to understand what exists: tmutil listlocalsnapshots /
    3. Only thin if snapshots are genuinely large and you have a confirmed external backup.
    # List snapshots first β€” review before thinning
    tmutil listlocalsnapshots /
    
    # Thin snapshots only if you have a confirmed external backup
    tmutil thinlocalsnapshots / 999999999999 1
    

    Safety level: advanced β€” do not run without backup. Local snapshots are your only recovery option if you delete a file accidentally and have no other backup. Thinning them is irreversible.

    Spotlight index caveat: Rebuilding the Spotlight index takes time and disables search temporarily. Only do this if Spotlight is confirmed as the storage cause via du -sh /System/Volumes/Data/.Spotlight-V100. It is not routine junk.

    Where the free path falls short

    Three gaps where Terminal alone isn't enough:

    1. Sandboxed app caches live in ~/Library/Containers/<bundle-id>/Data/Library/Caches/. You need to know each bundle ID to clean them individually β€” cleaners map those IDs to friendly app names.
    2. Visibility β€” you review file sizes but not content previews, so it can be hard to judge what's safe to delete.
    3. Repeatability β€” you'll want to do this again in 30 days. Remembering these commands is friction.

    Mac cleaners

    One-click cleaners solve sandboxed container caches and scheduled cleanup β€” the two things Terminal can't do easily. Only buy one if those two problems are yours.

    Apple-native first: the free path above β€” Terminal commands plus a visual file mapper such as OmniDiskSweeper β€” covers the core diagnosis work. Paid cleaners earn their place only when they make a specific repeated task easier, such as sandboxed container cache cleanup, scheduled cleanup, duplicate review, or app-uninstall leftovers.

    MacCleanse (Koingo) β€” granular per-category preview before you delete anything. Best for users who want to see exactly what's going to be wiped before clicking Clean.

    DMcleaner (Donemax) β€” cache cleanup, large-file finder, duplicate finder, and app uninstaller in one window. Best if you'd otherwise buy three separate utilities.

    AweCleaner (Magoshare) β€” the simplest one-click option with no extra modules. Good entry point if you just want the junk gone with minimal configuration.

    Mac PowerSuite (Fireebok) β€” disk cleanup, RAM management, and duplicate finding in one dashboard. Best if you're unsure whether your slowness is disk pressure or RAM pressure.

    Full head-to-head: Best Mac Cleaner Apps 2026.

    Disclosure: BundleHunt sells all of the above and earns a commission on each.

    Duplicate and file tools

    Duplicates are the most commonly overlooked space sink. Content-hash scanning finds renamed copies that filename search misses entirely.

    macOS Finder has no built-in duplicate scanner. Terminal can md5-hash files but shows only hashes β€” not side-by-side previews. A dedicated tool finds duplicates by byte content and shows previews before deletion.

    Duplicate File Finder (Nektony) β€” scans across any folder combination by content hash, with side-by-side previews. Works inside and outside Photos library.

    1Click Duplicate Finder - 1 Year (SEASOFT) β€” also finds similar (not-quite-identical) images using perceptual hashing. Useful for near-duplicate vacation photos.

    App Cleaner & Uninstaller (Nektony) β€” finds and removes orphaned files left behind by apps you've already dragged to Trash. Also manages startup items and login extensions.

    Disk Space Analyzer (Nektony) β€” treemap view of your entire drive. Shows which folders are largest before you start deleting.

    Scherlokk (Naarak) β€” lightning-fast filename and content search across the full drive. Useful for locating every copy of a file before deciding which to keep.

    Scherlokk fast file search across the full drive

    Scherlokk on BundleHunt is a regex-capable file search tool that indexes your drive and returns results in under a second β€” useful for finding every duplicate filename, every old installer, or every large file before you delete them.

    Good for: power users who want to locate files by name pattern or content before doing a bulk cleanup pass.

    Not for: users who want auto-deletion without reviewing results β€” Scherlokk finds, it doesn't delete.

    Full feature list

    Regex and wildcard search, file content search, result filtering by kind/size/date, fuzzy matching, integrated Quick Look previews. Can search inside archive files. Extremely fast on Apple Silicon due to low-level filesystem indexing.

    Disclosure: BundleHunt sells this; we earn a commission.

    File management utilities

    File renaming, migration, and compression tools solve the administrative layer of storage bloat β€” files that are disorganized rather than truly unwanted. These belong after the cleanup pass, not before.

    PDF Squeezer (Witt Software) β€” batch-compresses PDFs. Always run it on copies first, because compression settings can reduce image quality.

    NXPowerLite Desktop (Neuxpower) β€” compresses Office documents, PDFs, and images in bulk. Useful if your Documents folder is bloated with large presentation files.

    Todo PCTrans (EaseUS) β€” Windows-side migration software that helps copy files, settings, and data from one Windows PC to another. It is not a tool for moving macOS apps. Useful if you are consolidating files from an old Windows machine before switching to Mac.

    maFileRenamer β€” batch rename for storage organization

    maFileRenamer batch filename editing

    maFileRenamer on BundleHunt is a batch renaming tool that renames thousands of files in a single pass using rules β€” add date prefixes, strip duplicate suffixes, standardize extensions. Particularly useful for organizing photo exports and download archives before a cleanup pass.

    Good for: anyone with thousands of files named "IMG_0001.jpg" through "IMG_8000.jpg" who wants to sort by date or event before deleting the unwanted ones.

    Not for: users who need duplicate detection β€” maFileRenamer renames, it does not scan for content duplicates.

    Full feature list

    Rule-based renaming with preview, regex support, EXIF metadata extraction for photo renaming, sequential numbering, find-and-replace in filenames, case conversion, extension normalization. Processes entire folder trees in one pass.

    Disclosure: BundleHunt sells this; we earn a commission.

    RenameMe β€” simple drag-and-drop batch renaming

    RenameMe drag-and-drop batch rename interface

    RenameMe on BundleHunt is a lighter alternative to maFileRenamer focused on clean visual rules without the regex learning curve. Drag files in, set a rule, preview the new names, click Rename.

    Good for: occasional renaming tasks where you want a visual confirmation before committing β€” renaming a batch of downloaded assets or a set of exported reports.

    Not for: high-volume regex-based renaming pipelines β€” maFileRenamer has more rule depth.

    Full feature list

    Visual rename-rule builder, live preview, undo, sequential numbering, date/time injection, text find-and-replace, case conversion. Drag-and-drop from Finder.

    Disclosure: BundleHunt sells this; we earn a commission.

    Recovery, clone, erase, and storage expansion

    These tools solve the "I broke something during cleanup" and "I'm migrating to a bigger drive" scenarios. Buy only if you have the specific problem β€” they don't free space, they protect it.

    Data recovery (if you accidentally deleted something):

    • Magoshare Data Recovery β€” recovers deleted files from Mac internal and external drives
    • Donemax Data Recovery β€” deep scan mode for drives that have been reformatted
    • Fireebok Data Recovery β€” photo and video focused recovery

    Drive cloning (migrating to a larger SSD):

    • AweClone (Magoshare) β€” drive-cloning and recovery-oriented copy workflows
    • Donemax Disk Clone β€” disk-copy workflows for drive migration and second-copy backups

    Secure erasure (selling or giving away a Mac):

    • AweEraser (Magoshare) β€” selective overwrite workflows for files and folders on media where overwrite erasure is appropriate
    • Erazor (enSili.co) β€” selective secure-delete workflows; check the tool's current erase methods and your storage type before relying on it for compliance

    NTFS write access (external drives formatted for Windows):

    Donemax NTFS for Mac β€” read and write Windows drives

    Donemax NTFS for Mac enabling write access to Windows drives

    Donemax NTFS for Mac on BundleHunt enables full read-write access to NTFS-formatted external drives on macOS. Without it, macOS can read NTFS drives but cannot write to them β€” which means you can't move files off a Windows backup drive when cleaning up.

    Good for: anyone who uses external drives formatted for Windows, or who is migrating files between Mac and PC as part of a storage consolidation.

    Not for: users who exclusively use APFS or exFAT external drives β€” macOS natively reads and writes both.

    Full feature list

    Vendor-stated capability areas include NTFS mounting, write access, menu bar controls, and manual mount/unmount workflows. Use a native Time Machine destination format for backups unless you have verified your exact macOS version and backup workflow.

    Disclosure: BundleHunt sells this; we earn a commission.

    Cloud storage mounting (offload files to S3, Dropbox, SFTP):

    Mountain Duck 5 β€” mount cloud storage as a local drive

    Mountain Duck mounting S3 and cloud storage as a local disk

    Mountain Duck 5 on BundleHunt mounts remote storage β€” S3, Backblaze B2, Dropbox, Google Drive, SFTP, WebDAV β€” as a local disk in Finder. Files appear as if they're local but stream from the cloud, which means you can move large archives off your internal SSD to cheap cloud storage and access them without keeping a local copy.

    Good for: power users, developers, and anyone with large archival files (video projects, RAW photo archives) who want to offload them to cloud storage without leaving the Mac environment.

    Not for: users who need offline access β€” files that aren't cached locally require an internet connection to open.

    Full feature list

    Vendor-stated capability areas include remote-storage mounting for common cloud and server protocols, Finder integration, caching, and connection management. Confirm supported providers and caching behavior on the current deal/vendor page before purchase.

    Disclosure: BundleHunt sells this; we earn a commission.

    Mobile data recovery and management:

    • Fone Rescue (Fireebok) β€” recover deleted messages, photos, and contacts from iPhone backups stored on Mac
    • WhatsApp Pocket (Fireebok) β€” export and back up WhatsApp conversation data from iPhone backups on Mac; useful for clearing full iPhone backups that are bloating Mac storage

    Child posts {#child-posts}

    Each child post below is a complete, standalone guide for one specific storage problem. Find your symptom and go straight to that post β€” you don't need to read everything here first.

    • Best Mac Cleaner Apps 2026 β€” head-to-head comparison of MacCleanse, DMcleaner, AweCleaner, Mac PowerSuite, Memory Booster
    • How to Clean Mac Caches Safely β€” all four cache layers with exact Terminal commands
    • How to Clean Downloads Folder on Mac β€” the Shortcuts automation that keeps Downloads clean automatically
    • How to Clean Photos Library on Mac β€” the Optimize Mac Storage toggle plus Smart Albums

    Sources

    • Apple Support: Free up storage space on your Mac
    • man tmutil, man diskutil, man rm on macOS Sequoia 15.4
    • Apple Developer Documentation: APFS Reference

    Last reviewed 2026-05-17. Verified against macOS Sequoia 15.4.

    // tagsfree-disk-space-macmac-storage-fullmac-cleanupmac-storage-2026best-mac-cleaner
    // part of

    Disk Space

    See all 2 posts β†’

    β€œSystem Data” demystified. Reclaim 50–200GB without losing anything.

    About BundleHunt

    BundleHunt has been offering premium macOS software bundles since 2010. Build your bundle today.