How to zip a folder on a Mac.

Three ways from right-click to rename.

Zipping is built into macOS and has been forever — this guide exists because the built-in way has two quirks people search about: the archive is always named 'Archive.zip' when you compress multiple items, and there's no compression control. Methods, in order of ceremony:

1Right-click → Compress (built in)

  1. Select the folder in Finder.
  2. Right-click → Compress "Folder".
  3. A .zip appears alongside.

The standard way. Multiple selections become the eternally generic 'Archive.zip'.

2Terminal (control, for the comfortable)

  1. Open Terminal.
  2. Run: zip -r ~/Desktop/name.zip /path/to/folder
  3. Add -x '.DS_Store' to keep Mac droppings out of archives you send to Windows folks.

Full control including exclusions — if the Terminal is home to you.

3Rename with RenameTo

  1. Rename the folder: Report → Report.zip, press Return.
  2. The archive is created in place, named exactly what you typed.
  3. The original folder stays; the new archive is a separate output.

Naming and archiving become one gesture — which is what you were about to do anyway.

The rename version wins on a technicality that matters: you never get 'Archive.zip'. The archive is born with its real name.