Skip to content

WhatsApp on a Mac keeps every photo anyone ever sent you

The desktop app downloads media automatically and stores it in a shared container. Where it is, how to see the largest chats, and what deleting removes.

5 min read

Messaging apps are the quiet case. No single file is large, nothing arrives with a warning, and after two years of group chats the folder is bigger than most applications on the Mac.

Where it keeps things

du -sh ~/Library/Group\ Containers/*WhatsApp* \
  ~/Library/Containers/*WhatsApp* 2>/dev/null | sort -h

The group container is the one that matters, because that is where the media cache lives. It is a group container rather than an ordinary one so that the app and its notification helper can share the same data.

The setting that causes it

WhatsApp downloads photos and videos automatically as they arrive, which is what makes the app feel instant and is also the whole reason the folder grows. The app has its own storage screen listing chats by size, and it is more useful than anything you can do from Finder because it knows which media belongs to which conversation.

In the app: Settings, Storage and Data. That shows the largest conversations and lets you remove media per chat, which is the precise version of what deleting the folder would do bluntly.

What deleting actually loses

What you removeWhat happens
Media in one chat, from the appPhotos and videos go, messages stay
The whole group containerApp resets and asks you to link again
Files you saved elsewhereGone, they are not in the app

The middle row is the one to be careful about. Removing the container by hand is not dangerous to your message history, since that lives on your phone, but it does mean linking the desktop app again and waiting for it to resync.

Do it with the other chat apps

Every messaging app on the Mac has the same shape, and checking them one at a time wastes the effort. On the same measured Mac, Telegram's shared container was 277 MB and Slack's application data was larger again. One command covers all of them:

du -sh ~/Library/Group\ Containers/* ~/Library/Containers/* \
  2>/dev/null | sort -h | tail -20

Common questions

Where does WhatsApp store media on a Mac?

In a shared group container under ~/Library/Group Containers, named after WhatsApp, which the app and its notification helper both use. On a Mac measured in September 2026 that folder was 294 MB.

How do I clear WhatsApp storage on a Mac?

Use the app's own Settings, Storage and Data screen, which lists conversations by size and lets you remove media per chat. That keeps your messages and removes only the photos and videos, which is what the space actually is.

Will clearing WhatsApp on my Mac delete my messages?

No. Message history lives on your phone and the desktop app is linked to it. Removing the container entirely means linking the app again and letting it resync, but the conversations themselves are not stored only on the Mac.

Why does WhatsApp grow even when I barely use it?

Because media in group chats downloads automatically as it arrives, whether or not you open the conversation. The number of groups you are in matters more than how often you send messages.

Read next