About ZIP Files
ZIP Archive
ZIP is the most widely used archive format, supported natively by Windows, macOS, and Linux. It combines file compression and bundling, making it the default choice for sharing multiple files as a single download.
Family
Archives & Compressed
Extension
.zip
MIME Type
application/zip
Can Use As
HOW ZIP
CAME TO BE.
ZIP was created by programmer Phil Katz in 1989 as the successor to the ARC archive format, whose author, SEA, had sued Katz for distributing his compatible "PKARC" implementation. Katz responded by designing a fundamentally better format — ZIP was both faster and compressed tighter — and released the specification publicly. It rapidly replaced ARC as the standard archive format on DOS, Windows, and eventually the world.
Thirty-five years later ZIP is embedded into every major operating system, shipped as the transport layer for Office documents (DOCX is a ZIP), eBooks (EPUB is a ZIP), and Java applications (JAR is a ZIP). The format's combination of simplicity, resilience, and first-day OS support has made it effectively immortal.
CURIOSITIES &
TRIVIA.
DOCX, XLSX, PPTX, ODT, EPUB, JAR, APK and ODT are all ZIP archives — rename one to .zip and you can browse inside.
Phil Katz named the format "ZIP" because he wanted it to sound fast.
The Central Directory at the end of a ZIP file is an index — ZIP files are parsed back-to-front.
A ZIP can contain a ZIP that contains a ZIP — "zip bombs" are tiny files that unpack to petabytes.
ZIP supports password encryption but the legacy cipher (ZipCrypto) is trivially breakable; use AES-256.
STRENGTHS &
LIMITATIONS.
Strengths
- Universal support — every OS, every decade, every decompression tool.
- Fast random access via the Central Directory index.
- Per-file compression — each entry can use a different codec.
- Streamable and seekable.
- Royalty-free with public specification.
Limitations
- Default DEFLATE compression is weaker than modern alternatives (7z, zstd, xz).
- Legacy ZipCrypto encryption is cryptographically broken.
- Max 65,535 entries in a single ZIP (ZIP64 extension lifts this but breaks older tools).
- No built-in error correction — a single bad byte can kill the Central Directory.
Typical Sizes & Weights
Text document bundle
50–70% of originals
Photo album (already compressed)
~99% of originals
Source code repository
10–30% of originals
Technical Specifications
- MIME type
- application/zip
- Compression
- DEFLATE (most common), plus Bzip2, LZMA, XZ, Zstandard
- Max entries
- 65,535 (classic), ~2^64 (ZIP64)
- Encryption
- ZipCrypto (legacy, broken), AES-128/192/256
- Variants
- JAR, DOCX, EPUB, APK, ODT, WAR
CONVERT FROM
ZIP
Common Use Cases
File distribution, email attachments, software packages, backups.
Related Formats
Popular comparisons
ZIP vs 7Z
Differences, file size, and when to choose each format.
ZIP vs TAR
Differences, file size, and when to choose each format.
ZIP vs GZ
Differences, file size, and when to choose each format.
ZIP vs BZ2
Differences, file size, and when to choose each format.
ZIP vs XZ
Differences, file size, and when to choose each format.
ZIP vs LZMA
Differences, file size, and when to choose each format.
Popular ZIP conversions
The most-requested destinations when starting from ZIP.
Frequently Asked Questions about ZIP
Frequently Asked Questions
ZIP is the most widely used archive format, created by Phil Katz in 1989. It compresses one or more files into a single package, reducing total size. ZIP is natively supported by Windows, macOS, and Linux without additional software.
ZIP files open natively in Windows Explorer, macOS Finder, and most Linux file managers. For advanced features like encryption and split archives, use 7-Zip (free), WinRAR, or The Unarchiver (macOS).
ZIP offers universal compatibility since every OS opens it natively. 7Z provides significantly better compression ratios (up to 40% smaller) but requires 7-Zip or compatible software. Use ZIP for sharing and 7Z for archiving.