FormatDrop
Document Format

ZIP

ZIP Archive

ZIP is the world's most common archive format — a container that bundles multiple files and compresses them into one file for storage or sharing. Built into Windows, macOS, Linux, iOS, and Android without any software installation. ZIP is to file archiving what JPG is to images: not always the best option, but the one that works everywhere.

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?
Windows 10/11: right-click the ZIP → Extract All, or just double-click to browse inside. macOS: double-click the ZIP — it extracts to a folder automatically. Linux: right-click → Extract Here (in Nautilus/Thunar/Dolphin), or use the terminal: unzip file.zip. iOS: tap the ZIP in Files app — it extracts. Android: Files by Google opens ZIP files. No third-party software needed on any modern OS.
Is ZIP or RAR better?
RAR generally achieves 5-15% better compression than ZIP for most file types. RAR also has better error recovery (recovery records) and split archive support. However, RAR requires WinRAR (paid) to create — you can only extract RAR with free tools. ZIP is free to create and extract everywhere. For sharing: ZIP. For personal archives where better compression matters: consider 7-Zip (free, better compression than both ZIP and RAR).
Is a password-protected ZIP secure?
It depends on the encryption method. ZIP with AES-256 (supported by WinZip, 7-Zip, and modern Windows) is secure. ZIP with the old ZipCrypto encryption (the default in older tools) is insecure and can be cracked quickly. To create a securely encrypted ZIP: use 7-Zip (free) which uses AES-256 by default. Avoid ZIP files with 'traditional encryption' (ZipCrypto) for sensitive content.