What is ZIP?
ZIP was created by Phil Katz and Gary Conway in 1989 and released as an open format. Unlike competing formats that compress the archive as a whole, ZIP compresses each file individually using the DEFLATE algorithm (a combination of LZ77 and Huffman coding). This individual-file compression has an important consequence: you can extract a single file from a ZIP without decompressing the entire archive. A ZIP file consists of: compressed file data for each entry, a local file header for each entry (filename, size, compression method, checksums), and a central directory at the end of the archive (an index of all files and their offsets). The central directory at the end of the file means ZIP was originally designed for sequential write but random-access read — you can seek to the central directory and find any file without reading the whole archive. ZIP supports multiple compression methods: DEFLATE (most common), BZIP2, LZMA, and Stored (no compression, for files already compressed). ZIP's compression ratio is generally good for text, mediocre for already-compressed files (video, audio, JPG), and excellent for software source code. ZIP supports password protection (AES-256 or the weaker ZipCrypto) and Unicode filenames (ZIP64 extension). ZIP64 extends ZIP to support files larger than 4GB and archives larger than 65,535 files.
ZIP pros and cons
Advantages
- Universal — built into Windows, macOS, Linux, iOS, and Android
- No software needed to open on modern devices
- Good compression for text and source code
- Random access to individual files without decompressing all
- Password protection with AES-256 encryption
- Widely supported by web servers and email clients
Limitations
- Lower compression ratio than 7-Zip or RAR for most file types
- Poor compression for already-compressed files (JPG, video)
- Old ZipCrypto password protection is weak and can be cracked
- No built-in error recovery (RAR has recovery records)
- Compression is per-file, missing opportunities for cross-file compression
- 4GB file size limit without ZIP64 extension
When should you convert ZIP files?
Use ZIP when you need to send multiple files as a single attachment — it works without the recipient needing to install anything. Convert from RAR or 7Z to ZIP when sharing with people who don't have WinRAR or 7-Zip installed. Use 7Z instead of ZIP when maximum compression is the priority (7-Zip's LZMA2 achieves 30-70% better compression than ZIP DEFLATE for typical files). Use ZIP for web distribution — web servers, browsers, and download managers all understand ZIP natively. Don't use ZIP for video or audio files — they're already compressed and ZIP adds essentially nothing while adding container overhead.
Convert ZIP files
All FormatDrop conversions run entirely in your browser — no file upload, no server processing. Your files stay on your device.
ZIP FAQ
How do I open a ZIP file without WinZip?
Is ZIP or RAR better?
Is a password-protected ZIP secure?
More formats