Formats/ZIP
What Is a ZIP File? Compressed Archives Explained
A ZIP file, with the .zip extension, is an archive: a single file that bundles together many other files and folders, usually in compressed form to save space. Introduced in 1989 and built into every modern operating system, it is the near-universal way to package a batch of files for sending or storing — attach one ZIP to an email instead of forty loose files, or shrink a folder of documents before uploading it. It is so foundational that other formats, including DOCX, XLSX, PPTX and EPUB, are secretly ZIP archives themselves.
What a ZIP actually does
A ZIP does two related jobs. First, it bundles: it wraps any number of files and folders, preserving their names and directory structure, into one tidy container that is far easier to move around than a scattered pile of files. Second, it compresses: it applies a lossless algorithm (traditionally DEFLATE) that squeezes out redundancy, so the archive is often significantly smaller than the sum of its contents — with nothing lost, since unzipping restores every file exactly.
How much it shrinks depends entirely on the contents. Text, documents, spreadsheets and code compress a lot, because they are full of repetition the algorithm can exploit. Files that are already compressed — JPGs, MP4 videos, MP3 audio, or other ZIPs — barely shrink at all, because their redundancy has already been removed. This is why zipping a folder of photos saves almost nothing while zipping a folder of text files can halve the size.
Why ZIP is everywhere
ZIP became the default archive format because it is built into Windows, macOS, Linux, iOS and Android with no extra software needed — double-click a ZIP and it opens. That universality makes it the safe choice for sending multiple files: bundling them into one ZIP means a single attachment, a preserved folder structure, and often a smaller total size, with no worry about whether the recipient has special software.
It is also the invisible foundation of many other formats. A DOCX, XLSX, PPTX or EPUB is really a ZIP archive of XML and media files with a different extension — rename one to .zip and you can open it up and look inside. Understanding that demystifies a lot: it is why those documents are compact, and why they can occasionally be repaired by treating them as the archives they are.
ZIP and its alternatives
ZIP is the most compatible archive format, but not the most efficient. Formats like 7z and RAR often compress a little smaller, and formats common on Linux (like .tar.gz) bundle and compress in their own way — but all of these usually need extra software to open, where ZIP just works. For maximum compatibility, ZIP wins; for maximum compression among people who all have the right tools, the alternatives can edge ahead.
One important limit: ZIP is a general-purpose archiver, not a magic file shrinker. It will not meaningfully shrink a folder of photos or videos, because those are already compressed. To make images or PDFs smaller, you need format-specific compression that re-encodes the content — not a ZIP wrapped around it. Zipping is for bundling and for compressing compressible content, not for shrinking already-compressed media.
How to open and create a ZIP
Every modern operating system opens ZIP files with no extra software: on Windows and macOS you double-click to extract, and to create one you select files, right-click, and choose "Compress" or "Send to → Compressed folder". That covers the vast majority of everyday needs. Note that OfficePad's tools are for editing documents, PDFs and images rather than for zipping and unzipping — but when your real goal is to shrink a large PDF or image rather than just bundle files, format-specific compressors do far more than a ZIP would, because they actually re-encode the content.
Frequently asked questions
How do I open a ZIP file?
Every modern operating system opens ZIP files built-in — double-click on Windows or macOS to extract the contents. No extra software is needed.
Why did zipping my photos barely make them smaller?
JPG photos are already compressed, so a ZIP has little redundancy left to remove. ZIP shrinks text and documents a lot, but to shrink images or videos you need format-specific compression that re-encodes them.
Is a DOCX or XLSX really a ZIP file?
Yes. DOCX, XLSX, PPTX and EPUB are all ZIP archives of XML and media files with a different extension. Renaming one to .zip lets you open it and see the parts inside.
Work with ZIP on OfficePad
See also in the glossary: Compression ratio, Lossless compression, Container format.