← All articles

15 June 2026

How to Find Large Hidden Files on a MacBook (Finder, Terminal, and Disk Maps)

Three reliable ways to track down the biggest space-hogging files on a Mac — including the hidden ~/Library caches, backups, and dotfiles Finder will not show you.

"Where did all my space go?" is one of the most common questions Mac owners ask, and the honest answer is usually files you cannot see. The question really has two halves: finding the largest files on the disk, and finding the hidden ones—the dotfiles and ~/Library folders that Finder keeps out of sight by default. The biggest space-hogs are frequently both at once. This guide covers three reliable ways to track them down, from the gentlest to the most thorough. Find first, delete carefully second.

Show hidden files in Finder

Most of a Mac's "missing" space lives in folders Finder hides. The quickest reveal is the keyboard shortcut ⌘ Shift . (Command-Shift-period). Press it in any Finder window and hidden files and folders fade into view; press it again to hide them. To reach your hidden personal Library—where caches, containers, and app data accumulate—open Finder, choose Go from the menu bar while holding Option, then click Library. Or use ⌘ Shift G and type ~/Library.

Use the built-in storage tools

On macOS Ventura and later, open System Settings from the Apple menu, choose General, then Storage. The bar graph breaks usage down by category; click the info (ⓘ) button next to a category such as Documents or Applications to see a list you can sort by size and delete from directly. For ad-hoc hunting, Finder's own search is faster than people expect: press ⌘ F, set the scope to This Mac, then add a File Size filter set to is greater than a threshold like 500 MB. You now have every oversized file on the machine, ranked. Apple documents the full official sequence in Free up storage space on Mac.

Find them in Terminal (the thorough way)

When you want the complete picture—including every hidden directory—nothing beats a few Terminal commands. Open Terminal (in Applications → Utilities) and try these:

  • du -sh ~/* prints the size of each item in your home folder. Add a second pass, du -ah ~ | sort -rh | head -20, to list the twenty biggest files and folders anywhere under your account, largest first.
  • du -sh ~/Library/* | sort -rh drills straight into the hidden Library, which is where caches and app containers usually bury the most space.
  • find ~ -type f -size +500M lists individual files over 500 MB, hidden ones included. Adjust the number to taste (for example +1G).
  • If you have Homebrew, brew install ncdu then ncdu ~ gives an interactive, navigable size browser right in the terminal.

Where the hidden bulk usually hides

Once you can see hidden files, the same culprits turn up again and again. Knowing the names saves a lot of digging:

  • Caches and containers: ~/Library/Caches, ~/Library/Containers, and ~/Library/Application Support.
  • Old iPhone and iPad backups: ~/Library/Application Support/MobileSync/Backup can hold tens of gigabytes you forgot existed.
  • Developer leftovers: Xcode's DerivedData and device simulators, Docker disk images, and stray node_modules folders.
  • Media and mail: your Photos library, downloaded Mail attachments, and Time Machine's local snapshots that wait to be copied to a backup drive.

Prefer a visual map?

If reading a list is not your thing, a disk-map app draws your storage as coloured rectangles sized by how much space each file uses—huge files are impossible to miss. GrandPerspective is free, while DaisyDisk and OmniDiskSweeper are popular paid and free options. They are an excellent way to spot a single forgotten 40 GB video file at a glance.

What is safe to delete

Finding the files is the easy part; removing them is where people get into trouble. Caches generally regenerate, but quit the relevant app first so it does not rewrite them mid-delete. Be cautious inside ~/Library/Containers and never rm -rf system folders or anything you cannot clearly identify—deleting the wrong thing in Library can break an app or its settings. When in doubt, move the file to an external drive first and confirm everything still works before emptying the Bin. For a safe, ordered cleanup once you have located the offenders, see our companion guide on Mac disk space management.

Takeaway: The space you are missing is almost always hidden, not gone. Reveal hidden files with ⌘ Shift ., let du and Finder's size search rank the biggest offenders, then delete deliberately rather than in a panic.