The absolute beginner’s guide. In 5 minutes you’ll know everything you need to work with ZIP files confidently.
The simple definition
A ZIP file is a container. It’s one file that holds other files inside it — documents, photos, folders, whatever — and usually compresses them so the whole bundle takes up less space.
Picture a sealed envelope with several documents inside. The envelope (the ZIP) is one thing, but it contains many things. Mailing one envelope is easier than mailing each document separately — same idea with ZIP files and email.
Why do ZIP files exist?
Three practical reasons, in order of historical importance:
1. To save space
Documents and text have a lot of repetition. ZIP finds those repeating patterns and replaces them with shorter codes — usually shrinking the file by 30–90%. A 100 MB folder of Word documents might fit in a 20 MB ZIP.
2. To bundle many files into one
Email attachments, file uploads, and file sharing all handle one file much more easily than many. “Here are my vacation photos — please find them as PhotosJune2026.zip attached” is simpler than attaching 150 separate images.
3. To preserve folder structure
If you zip a folder with sub-folders, the structure stays intact. When someone extracts the ZIP, they get the exact same layout you started with.
A tiny bit of history
ZIP was invented in 1989 by Phil Katz, a programmer frustrated with a competing format called ARC. He released it under his company PKWARE, with the ZIP specification freely available for anyone to implement. That openness made ZIP the universal archive format it is today — every operating system, programming language, and major app can read ZIP files natively.
The .zip name is a play on “moving fast” — as in “zip through” your files quickly.
How to recognize a ZIP file
- The file name ends in
.zip—MyDocuments.zip,Photos_June.zip. - The icon usually shows a folder with a zipper or a small ZIP pull.
- Double-clicking usually shows the contents — though you still need to extract before you can actually edit anything inside.
What is a password-protected ZIP?
A ZIP can optionally be encrypted with a password. The envelope stays sealed until someone enters the right password — then it opens normally.
You can often see the names of the files inside (like reading the label on a sealed envelope), but you can’t read the actual contents until you enter the password.
Two kinds of encryption exist:
- ZipCrypto — old, weak, crackable in minutes by anyone determined.
- AES-256 — modern, military-grade. Essentially uncrackable with current technology if the password is strong.
See our full guide to opening password-protected ZIPs.
How is a ZIP different from a folder?
| Folder | ZIP file |
|---|---|
| Editable in place. | Must extract before editing. |
| Not compressed. | Compressed (usually 30–90% smaller). |
| Can’t easily email. | Single file — easy to email. |
| No built-in password. | Can be password-protected. |
| Stored on disk as many individual files. | Stored as one file. |
What should I do next?
Depending on your situation:
- Someone sent me a ZIP and I need to open it: see our main opening guide.
- I have files I want to send securely: see creating an encrypted ZIP.
- My ZIP won’t open properly: see fixing a corrupted ZIP.
- I got a .rar or .7z instead of a .zip: see RAR guide or 7z guide.