> ## Content Index
> Fetch the complete content index at: https://www.tsamoudakis.com/llms.txt
> Use this file to discover other available public pages before exploring further.

# Stop your Downloads folder from filling up with zips
- URL: https://www.tsamoudakis.com/stop-your-downloads-folder-from-filling-up-with-zips/
- Published: 2026-09-08T18:34:24.000Z
- Updated: 2026-09-08T18:34:24.000Z
- Description: macOS has had a setting for years that sends every zip to the Trash the moment you extract it. Where it is hidden, what to set, and why nothing in the interface points you there.
- Author: Panos Tsamoudakis
- Tags: macOS

You download something. A Ghost theme, or a folder of photos from a client. You double-click the zip, the folder appears right beside it, and you get on with your day. The zip stays exactly where it was. A month later, you scroll through Downloads and half of what's in there is archives you already extracted and will never open again.

I've been dragging those to the Trash by hand for about twenty years. Turns out I never had to.

## The app you've never opened

Every zip you double-click in Finder is handled by an app called Archive Utility, and so is every file you right-click and Compress. It's a normal app with a normal icon, and if you go looking, you'll find it at `/System/Library/CoreServices/Applications/`.

That's a second Applications folder, buried inside macOS and nothing to do with the Applications folder in your Finder sidebar. It holds the small apps macOS launches on your behalf rather than expecting you to open them yourself. About This Mac is in there, which is a fair illustration of the idea: you've opened it from the Apple menu dozens of times without ever picturing it as an app sitting in a folder somewhere.

![Finder window showing Archive Utility inside System > Library > CoreServices > Applications](https://storage.ghost.io/c/e1/72/e1727581-3411-494e-b727-d5894a93d7ac/content/images/2026/09/043-coreservices-applications.jpg)

Archive Utility, filed between About This Mac and Desk View.

Which is why you've been using Archive Utility for years without ever really seeing it. It starts when you open a zip, sits in the Dock while it works, finishes, and quits.

You can also launch it yourself. Search for it in Spotlight, or [Raycast](https://www.tsamoudakis.com/unleash-your-productivity-with-raycast-for-macos/), or whatever you launch things with. Almost nothing happens, because the app has no window of its own. The one thing that changes is the menu bar, which now reads Archive Utility in the top left.

From there, press `⌘ + ,`.

## What's in the settings

It's a small window, split into two halves.

The top half handles expanding, which is what happens when you open a zip someone sent you:

- **Save expanded files into** the folder the archive lives in, or a specific folder you choose
- **After expanding**, either leave the archive alone (the default), move it to the Trash, delete it, or move it to a folder
- **Reveal expanded item(s) in Finder**, on by default

The bottom half handles archiving, which is what happens when you use Finder's Compress command:

- **Use archive format**, with zip as the sensible default
- **After archiving**, the same four choices applied to the files you just compressed
- **Reveal archive in Finder**

![Archive Utility settings on macOS, with "After expanding" set to move archive to Bin](https://storage.ghost.io/c/e1/72/e1727581-3411-494e-b727-d5894a93d7ac/content/images/2026/09/043-archive-utility-settings.jpg.jpg)

## What I set, and why

After expanding, I have it move the archive to the Trash. Double-click a zip, get your folder, and the archive takes itself out. Downloads stops accumulating dead weight without you thinking about it.

I don't use delete archive. It skips the Trash entirely, and there's no undo. Every so often a zip is the only copy of something, or the extraction fails halfway, and you want another go at it. The Trash costs you nothing and buys you a month of second chances.

I leave the save location alone. Pointing everything at one folder sounds tidy until you expand a zip sitting on your Desktop and the files land in Downloads, and then you spend two minutes convinced the extraction failed. Expanding next to the archive is the predictable option.

For archiving, leave files alone. You almost never want Compress to eat the original.

## Where this stops working

The setting belongs to Archive Utility rather than to the `.zip` file type, so it only applies when Archive Utility is the one doing the work. If you've set [Keka](https://www.keka.io/en/?ref=tsamoudakis.com) or [The Unarchiver](https://theunarchiver.com/?ref=tsamoudakis.com) as your default handler, nothing here fires. Those apps have their own cleanup preferences, so it's worth a look in there if you've switched.

Terminal is its own world. The `unzip` command is a separate program that has never heard of Archive Utility or its preferences, so it leaves the archive sitting there, whatever you've set. If you want the same behavior on the command line, you have to build it yourself, along the lines of `unzip archive.zip && rm archive.zip`, or wrapped in a shell function if you do it often enough to care.

Disk images don't go through Archive Utility either. A `.dmg` gets handled by another one of these invisible apps, DiskImageMounter, and it has no settings to speak of. Double-clicking a disk image mounts it as a volume rather than extracting anything, so there's nothing for an After expanding rule to act on, and ejecting that volume leaves the original file exactly where you downloaded it. Which is why Downloads still fills up with those.

## So how were you supposed to find this?

Say you go looking for it. Right-click the zip, and you get Open, Open With, and Move to Trash, with nothing that sounds like a preference. Try Finder's Compress command, and there's nothing attached to that either, since it's a menu item rather than an app you can configure. Open System Settings and hunt for the pane that would hold this, and there's no Archive pane, no Files pane, and nothing under General that admits to owning it. Spotlight gets you there in one keystroke, but only once somebody has told you the words Archive Utility.

That's the shape of it. The setting has been sitting there for twenty years, and every route to it needs you to know the answer before you start.

Google pulls the same trick with [Calendar's hidden sync settings](https://www.tsamoudakis.com/unlocking-google-calendars-hidden-sync-settings/), which decide whether the calendars you add ever show up in Apple Calendar or Fantastical. Nothing in Calendar's own settings links to that page. I keep the URL in a note, because a note is the only navigation that works.

So when macOS does something I'd rather it didn't, my first move now is to work out which app owns the behavior and go at it by name. Finder shows me the zip. Archive Utility decides what happens to it. That's how I got here.

I doubt I'm alone in that. Hit reply and tell me which macOS setting you found embarrassingly late.