Searched what happens if i delete cache folder mac and got a mix of "do it, free up space!" and "never touch it"? Both camps are oversimplifying. Deleting your Mac's caches folder has real, predictable consequences — some mild and temporary, a few genuinely annoying — and the speed boost most guides promise is more modest than advertised. Here is what actually happens, folder by folder.
What Are Cache Files on macOS?
macOS and the apps running on it store temporary data in cache folders so they do not have to recompute or re-download the same information twice. There are three main locations you will encounter:
- ~/Library/Caches — per-user app caches (Safari, Xcode, Spotify, etc.)
- /Library/Caches — system-wide caches shared across users
- /System/Library/Caches — protected OS caches; macOS manages these itself
You can open the user cache folder directly by pressing Cmd + Shift + G in Finder and typing ~/Library/Caches. What you see there are subdirectories created by each installed app — often gigabytes of data for tools like Xcode or Final Cut Pro, and a few kilobytes for lightweight utilities.
What Happens When You Delete the Caches Folder on a Mac?
Deleting cache files is permanent. macOS does not move them to the Trash; once gone, they are gone. The consequences depend on which caches you remove.
1. Slower First Launch for Every App
This is the most immediate and universal side effect. Apps cache compiled code, layout data, and asset indexes so they start faster on subsequent launches. Remove those caches and every app behaves as if it is being opened for the first time — Safari rebuilds its resource map, Spotlight re-indexes metadata, and even system preferences panels take a moment longer to load. The slowdown is temporary: caches rebuild themselves during normal use, usually within a day or two.
2. Thumbnail and Preview Regeneration
Finder stores thumbnail previews for images, PDFs, and video files in ~/Library/Caches/com.apple.QuickLook.thumbnailcache. Delete this and every folder with images will show generic icons until macOS regenerates the previews — which happens automatically but can take minutes or hours on large photo libraries.
3. Re-logins and Lost Session State
Some apps — particularly older or cross-platform tools — store session tokens and "remember me" cookies inside their cache directory rather than in the Keychain. Clearing their cache folder entry will log you out. Web browsers are the most common offender: deleting the browser's cache clears stored page resources but should not log you out of websites (that data lives in a separate cookies store). App-specific logins inside the cache are a different matter.
4. Re-downloads and Re-indexing
Apps like Xcode, Instruments, or package managers (Homebrew, npm) cache downloaded packages and derived data. Deleting these forces a full re-download next time you build or run a command. For developers on metered connections or slow links, this is the most costly side effect.
5. Temporary Disk Space Reclaimed — Then Gradually Refilled
Yes, you will get disk space back. How much varies wildly. A typical macOS user might reclaim 1–5 GB from user caches; a developer with Xcode could recover tens of gigabytes from derived data alone. But caches are designed to grow back. Within a week of normal use, most of that space will be reclaimed by macOS as it re-caches the same data.
Does Deleting Cache Speed Up Your Mac?
This is the core myth worth addressing honestly. The answer is: only in edge cases, and usually the opposite is true in the short term.
Cache files exist specifically to make your Mac faster. Removing them forces every app to redo work it had already cached, which is slower, not faster. The scenario where clearing caches genuinely helps performance is narrow:
- A cache file has become corrupted and is causing an app to hang or crash.
- Your startup disk is so full (under ~10% free) that macOS cannot create virtual memory swap files — in this case, freeing any space, including caches, can unblock the system.
- A specific app's cache has grown pathologically large (common with Xcode's derived data or Spotify's offline cache) and is crowding out other storage.
In every other situation, deleting caches trades a temporary space gain for a temporary performance penalty. The Mac does not become faster; it just becomes leaner for a few days before filling back up.
Which Cache Folders Are Safe to Delete?
| Folder | Safe to Delete? | Side Effect |
|---|---|---|
~/Library/Caches/<app-bundle-id> |
Generally yes | Slower first launch; app rebuilds automatically |
~/Library/Caches/com.apple.QuickLook.thumbnailcache |
Yes | Thumbnails regenerate; takes time on large libraries |
~/Library/Developer/Xcode/DerivedData |
Yes (Xcode must be closed) | Next build is a full cold build; re-downloads SDKs if needed |
/Library/Caches |
Mostly yes, with caution | Some system services slow down temporarily |
/System/Library/Caches |
No — leave this alone | macOS manages this; manual deletion can cause boot issues |
Font caches (com.apple.ATS) |
Only if font rendering is broken | Font server restarts; may require reboot |
How to Clear User Caches Manually
If you have decided to clear your user caches, quit all open apps first, then follow these steps:
- Press Cmd + Shift + G in Finder, type
~/Library/Caches, and press Return. - Select the subdirectories you want to remove (do not select the
Cachesfolder itself — only the contents). - Move selected folders to the Trash, then empty the Trash.
- Restart your Mac to let system services reinitialize cleanly.
Alternatively, from Terminal:
rm -rf ~/Library/Caches/<specific-app-bundle-id>
Replace <specific-app-bundle-id> with the exact folder name — for example, com.spotify.client. Avoid using a wildcard on the entire Caches directory without reviewing what you are deleting.
A Smarter Approach: See What Is Actually Worth Clearing
Before deleting anything blindly, it helps to know which cache folders are large enough to matter and which ones belong to apps with login state stored inside them. Crumb shows you the reclaimable size of your caches broken down by category and flags app caches that may contain session data — so you know what you are giving up before you give it up. That context is worth having, because clearing a 200 MB cache that rebuilds in 10 minutes is a different decision from clearing a 15 GB Xcode derived-data folder you will not miss at all.
If you want to proceed with a cleanup, you can download Crumb and run a one-click clean that targets purgeable space, system logs, and temporary files — the categories macOS itself considers safe — without touching caches that would trigger re-logins or slow your next work session.
The Bottom Line
Deleting your Mac's caches folder does free up space, and the side effects — slower first launches, regenerated thumbnails, occasional re-logins — are real but temporary. It does not reliably speed up your Mac; it can briefly slow it down. The genuinely useful cases are targeted: remove a corrupted or bloated cache for a specific app, not the entire folder wholesale. Know what you are clearing, know what comes back, and you will make a much better call than any blanket "delete it all" advice suggests.