ZIP Archive
ZIP is the most widely used archive format for bundling and compressing multiple files into a single container. It supports lossless compression, directory structures, file comments, and optional encryption. ZIP is natively supported by Windows, macOS, and Linux without additional software.
MIME Type
application/zip
Type
Binary
Compression
Lossless
Advantages
- + Universal support across all operating systems without extra software
- + Random access to individual files without decompressing everything
- + Optional AES-256 encryption for sensitive content
- + Well-suited for bundling mixed file types
Disadvantages
- − DEFLATE compression ratio is lower than 7z, Zstandard, or XZ
- − Legacy ZIP encryption (ZipCrypto) is weak and easily cracked
- − No built-in error recovery for corrupted archives
When to Use .ZIP
Use ZIP for bundling files for email attachments, downloads, and any situation requiring a universally compatible compressed archive.
Technical Details
ZIP uses per-file compression (typically DEFLATE) with a central directory at the end of the archive for fast file listing. Each entry stores its own CRC-32 checksum, compressed size, and metadata independently.
History
Phil Katz created the ZIP format in 1989 for his PKZIP utility. The format specification has been publicly available since its inception, enabling universal adoption. ZIP64 extensions added support for files over 4 GB.