.ZIP

ZIP File

ZIP Archive
Ask a question
QUICK ANSWER

A ZIP file is a compressed archive that stores one or more files in a single smaller package. On Windows, macOS, iOS, and Android you can open it without installing anything - just double-click or tap. A ZIP cannot be converted to a PDF or MP3; it is a container of files, not a document.

Developer: Phil Katz / PKWARE (originally PKZIP, 1989) Category: Compressed Files Open standard MIME: application/zip
OPENS ON Windows macOS Linux Android iOS
Related: .RAR · .Z01 · .7Z · .001

On this page

19k+ extensions indexed
Last reviewed Aug 29, 2026

Not sure what your file is?

Drop any file into our identifier - we read just the first bytes to name the format.

Identify a file

What is the ZIP file format?

.zip is currently the most popular format used for archiving and compressing files and folders. Creating archives using the ZIP compression method is lossless, and enables reducing the size of chosen files and folders.

The .zip format supports compression through several algorithms. Depending on the version, these include (among others):

  • Deflate (most common)
  • BZIP2
  • LZMA / LZMA2
  • Implode (legacy)
  • WavPack
  • Zstandard (added in newer APPNOTE revisions)

Advantages of ZIP compression

All files compressed with the ZIP method are stored separately within the archive, which makes it possible to extract individual entries without decompressing the whole set. Files within an archive are not only stored separately but also compressed individually, which enables substantially reducing the final size of a given file. The format also supports optional AES-256 encryption for securing individual entries.

The .zip design is also notable in that many modern file formats are themselves .zip containers - including .DOCX, .XLSX, .EPUB, and Android .APK packages. The signature bytes at the start of every standard .zip file - 50 4B 03 04 - encode the initials of ZIP's creator, Phil Katz ("PK").

ZIP archiving and compression is used by many people and programs for the purpose of merging extensive file structures into a single file, which facilitates sending and transferring files.

Differences between ZIP, RAR and 7Z

The .zip format was developed in 1989, before other currently popular archive formats. It typically uses the light and fast Deflate compression algorithm. In competing formats such as .RAR and .7Z, a series of improvements - including better compression ratios and stronger encryption - were introduced, though at the cost of higher memory requirements and slower processing compared with .zip. ZIP's enduring strength is near-universal compatibility: virtually every operating system and countless applications can open a .zip file natively, without additional software.

Security & safety

RISK: MEDIUM

ZIP itself is safe, but it is a top malware-delivery wrapper: attackers email ZIPs to bypass scanners and hide an EXE or script inside (sometimes inside a password- protected ZIP whose password is in the email body, defeating antivirus). Treat unexpected ZIP attachments with suspicion and check the contents before running anything executable. "Zip bombs" (tiny archives that expand to terabytes) can crash naive extractors. On the privacy side, standard ZipCrypto passwords are weak and crackable in seconds - for real protection use AES-256 (7-Zip, WinZip, PeaZip).

Format details

in a nutshell
FULL NAMEZIP Archive
DEVELOPERPhil Katz / PKWARE (originally PKZIP, 1989)since 1989 (PKZIP 1.0); APPNOTE specification is public
MIME TYPEapplication/zip
TYPECompressed archive container (binary)
STANDARDOpen · royalty-free
MAGIC BYTES · FILE SIGNATURE
OFFSET
00010203
HEX
504B0304
ASCII
PK··
"PK" are Phil Katz's initials. Empty archives start with "PK\\x05\\x06" (end-of- central-directory) and spanned/split archives with "PK\\x07\\x08". The authoritative structure is the central directory at the END of the file, so a ZIP can have leading bytes (self-extracting EXE stubs) before the first PK signature.

Programs that open ZIP files

Windows5 apps
WinZip Paid Open the ZIP and click 'Unzip'. The original commercial tool - rarely needed now that Windows unzips natively.
WinRAR Paid Right-click > 'Extract Here'. Trialware but widely used; handles split ZIP volumes.
7-Zip Open-source Right-click > 7-Zip > 'Extract Here' / 'Extract to folder'. Best free tool; also creates AES-256 encrypted ZIPs.
PeaZip Open-source Open the ZIP and click Extract. Free, supports AES-256 and split archives. (Note: old peazip.org URL moved to peazip.github.io.)
Windows File Explorer (built-in) Built-in Right-click the ZIP > 'Extract All…', choose a folder, click Extract. Or double-click to browse inside without extracting.
macOS3 apps
The Unarchiver Free Free App Store app for ZIPs Archive Utility struggles with (encoding, split, password). Right-click > Open With.
Archive Utility (built-in) Built-in Double-click the ZIP - macOS extracts it automatically into the same folder.
Keka Free Drag the ZIP onto Keka to extract; also creates AES-encrypted archives.
Linux4 apps
Xarchiver Open-source Lightweight GUI archiver for XFCE/LXDE: open and Extract. (Active fork on GitHub; old SourceForge page is stale.)
File Roller (GNOME Archive Manager) Open-source Double-click the ZIP in Files, then 'Extract'. Bundled with GNOME. (Project now lives on GNOME GitLab, not the old SourceForge URL.)
Ark (KDE) Open-source KDE's archive manager: double-click > Extract. Default on KDE Plasma.
unzip (command line) Open-source Run: unzip archive.zip - the standard Info-ZIP tool on most distros.
Android1 app
Files by Google Free Tap the ZIP > Extract. Built-in extraction on most modern Android phones.
iOS1 app
Files app (built-in) Built-in Tap the ZIP in the Files app - iOS unzips it into the same folder (since iOS 11, 2017).

Technical details

deep spec
MIME typeapplication/zip
Magic bytes50 4B 03 04 ("PK\x03\x04") at offset 0 - "PK" are Phil Katz's initials
File structureCentral directory stored at the END of the archive, enabling appending files and self-extracting EXE stubs before the first entry
Compression per entryEach file is compressed independently, allowing selective extraction without decompressing the whole archive
Default compressionDeflate (method 8); uncompressed storage also available (method 0 - Store)
Supported algorithmsDeflate, BZIP2, LZMA, LZMA2, WavPack, Zstandard (support varies by implementation)
EncryptionOptional per-entry AES-256 (since PKZIP 5.0) and legacy ZipCrypto (weak - avoid for sensitive data)
Large file supportZIP64 extension removes the classic 4 GB per-entry and 65,535-entry limits
Split archivesMulti-volume spanning via numbered segments (.z01, .z02, …)
Integrity checkCRC-32 checksum per entry, stored in both local header and central directory
Unicode filenamesUTF-8 encoding flag (general-purpose bit 11) standardized in APPNOTE 6.3.0
Self-extracting archivesEXE stubs can be prepended; the embedded central directory keeps the file valid as both EXE and ZIP
Archive commentsArchive-level and per-entry comments stored as plain text in the central directory
Used as base formatDOCX, XLSX, EPUB, APK, JAR, and ODF files are all ZIP containers with structured internal content
Native OS supportBuilt into Windows Explorer (since XP), macOS Finder, and standard Linux distros via unzip/zip
Released1989 (PKZIP 1.0); APPNOTE specification is public
Open standardYes · royalty-free
Specificationpkware.cachefly.net

ZIP conversions

Community Q&A

asked by users
Ask a quick question
Get help from people who work with ZIP files. Be specific - include your system and software version.
No account needed · answers usually within a day

No questions yet - be the first to ask about ZIP files.

Frequently asked questions

Do I still need WinZip in 2026?
Usually no. Windows 11, macOS and most Linux desktops open and create ZIP files natively. For stronger compression, AES-256 encryption or split archives, the free 7-Zip or PeaZip cover almost everything WinZip does.
How do I open a password-protected ZIP?
You need the password - there is no legitimate way around it for AES-encrypted ZIPs. Enter it when 7-Zip/WinRAR/Windows prompts you. If it's old weak ZipCrypto and you've lost the password, recovery tools exist but can be slow.
How do I open a ZIP on my phone?
On Android, tap it in Files by Google and choose Extract. On iPhone/iPad, tap it in the Files app and iOS unzips it automatically (since iOS 11).
Why does my ZIP say it's invalid or corrupt?
Common causes: an incomplete download, the file is actually a split archive missing its other parts (.z01, .z02…), or it isn't really a ZIP. Re-download it, gather all volumes in one folder, or try 7-Zip which is more tolerant.
Can I convert a ZIP to a PDF?
No. A ZIP is a container of files, not a single document. Extract it first, then convert the individual documents or images inside to PDF.
What's the difference between ZIP and RAR/7z?
All three compress files. ZIP is universal and built into every OS; 7z compresses smaller and has strong encryption (free); RAR often compresses well but only WinRAR can create it and it's paid.

References

1PKWARE - APPNOTE.TXT (.ZIP File Format Specification)pkware.cachefly.net
2Microsoft - Zip and unzip files (Windows)support.microsoft.com

Keep exploring

across the database

Top extensions this week

1.AQQAQQ Instant Messenger File
2.CRDOWNLOADChrome Partial Download File
3.MDMarkdown Document
4.BINCD/DVD Disc Image (BIN/CUE)
5.PARTPartial Download File
6.RPMSGRestricted Permission Message
7.EXEWindows Executable (Portable Executable)
8.NOMEDIAAndroid No-Media Marker File
9.AVIFAV1 Image File Format (AVIF)
10.ICSiCalendar data file

Related extensions

.RARRAR Archive (Roshal ARchive)
.Z01Split ZIP Archive - First Part
.7Z7-Zip Archive
.001Split / multi-volume archive - first part (.001)
.ZIRenamed / Truncated ZIP Archive
.CBRComic Book RAR Archive

Free file tools

An in-browser file identifier and image converter - everything runs on your device.

Open the toolbox

Browse file extensions A-Z