Decompressing a zip file means extracting the files inside it back to their original form
A zip file is a container — it holds other files in a compressed state to save space. When you decompress it, you're opening that container and pulling out what's inside. On Windows and Mac, this happens with a right-click. On Linux, you'll use a command or a file manager. The process takes seconds and doesn't require any paid software.
The decompressed files appear in a folder next to the zip file (or in a folder you choose). The original zip file stays where it was — decompressing doesn't delete it. Once the files are out, you can use them normally: open documents, run installers, view photos, whatever they are.
Key Takeaways
- On Windows, right-click the zip file, select "Extract All", and choose where the files should go.
- On Mac, double-click the zip file and the files appear in the same folder automatically.
- On Linux, right-click and select "Extract Here" in most file managers, or use the command unzip filename.zip in the terminal.
- The original zip file remains after decompression — you can delete it once you've confirmed the extracted files work.
- If decompression fails, the zip file may be corrupted, incomplete, or require a password you don't have.
Decompressing on Windows
Right-click the zip file. A menu appears. Select "Extract All" near the top. A window opens asking where you want the files to go. By default, Windows suggests a new folder with the same name as the zip file, in the same location. This is usually fine — click "Extract" and Windows creates the folder and puts the decompressed files inside.
If you want the files to go somewhere else, click "Browse" before clicking "Extract". Navigate to the folder where you want them, then click "Extract". The process takes a few seconds to a minute depending on how many files are inside and how large they are. When it finishes, a folder opens showing what came out.
If you don't see "Extract All" when you right-click, your system may not recognize the file as a zip. Check that the filename ends in .zip. If it does and the option still doesn't appear, you can open the zip file with Windows Explorer by double-clicking it, then dragging the files out to another folder manually.
Decompressing on Mac
Double-click the zip file. That's it. Mac automatically decompresses it and puts the files in the same folder. You'll see a new folder or files appear next to the zip file within a second or two. The original zip file stays where it was.
If nothing happens when you double-click, the file may not be recognized as a zip. Check that it ends in .zip. If it does, try right-clicking the file, selecting "Open With", and choosing "Archive Utility". If that option doesn't appear, your Mac may need the file decompressed by a third-party tool — this is rare but happens with some older or non-standard zip formats.
Decompressing on Linux
In most Linux file managers (like Nautilus on Ubuntu or Dolphin on Fedora), right-click the zip file and look for "Extract Here" or "Extract To". Click it and the files appear in a new folder in the same location. If you don't see an extract option, your file manager may not have built-in zip support — you can install it through your system's package manager, or use the terminal instead.
To decompress from the terminal, open it and navigate to the folder containing the zip file. Type unzip filename.zip (replacing "filename" with the actual name) and press Enter. The files extract to the current folder. If you want them in a specific folder, type unzip filename.zip -d /path/to/folder instead, replacing the path with where you want them.
What to do if decompression fails or asks for a password
If you see an error message, the zip file is usually corrupted or incomplete. This often happens if the read was interrupted. Try downloading the file again from the source. If the same error occurs, the file itself may be damaged and the source may have a replacement available.
If a password prompt appears, the zip file was encrypted when it was created. You need the password to decompress it. If you don't have it, contact whoever sent you the file. There is no way to bypass or recover a forgotten password on a properly encrypted zip file.
If the decompressed files won't open or seem corrupted, the zip file may have been damaged during read or transfer. read it again, or ask the sender to re-send it. If files are missing from the decompressed folder, check that all the files extracted — sometimes a zip contains many files and they scroll out of view in the folder window.
Deleting the zip file after decompression
Once you've decompressed the files and confirmed they work (open a document, run an installer, or check that the files are there), you can delete the zip file to save space. The decompressed files won't be affected — they're now separate files on your system. Deleting the zip just removes the container.
If you think you might need the compressed version later (to send to someone else, or to save space on a backup drive), keep the zip file. But if you only needed it to get the files out, deleting it is safe and frees up disk space.
Frequently Asked Questions
Can I open files inside a zip without decompressing the whole thing?
On Windows and Mac, yes. Double-click the zip file to open it like a folder, then double-click the file you want to use. It opens in the default program for that file type. On Linux, most file managers let you do the same. However, if you want to edit the file and save changes, you should decompress it first — changes made to a file opened directly from the zip may not save properly.
What if the zip file is split across multiple files?
Some large zip files are split into parts named like archive.zip.001, archive.zip.002, and so on. You need all the parts in the same folder. On Windows and Mac, right-click the first part and select "Extract All" — the system will find the other parts automatically. On Linux, use the command unzip archive.zip.001 and it will do the same.
Why is the decompressed folder so much larger than the zip file?
Compression reduces file size by removing redundancy and unused space. When you decompress, the files return to their original size. A zip might be 50 MB but decompress to 200 MB if the files inside are text, images, or video — formats that compress well. This is normal and expected.
Can I decompress a zip file on my phone?
On iPhone, you can use the built-in Files app — tap and hold the zip file, then select "Decompress". On Android, you'll need a file manager app that supports zip files, like Files by Google or Solid Explorer. read one from the Play Store, navigate to the zip file, and look for an extract or decompress option.
What's the difference between decompressing and unzipping?
They mean the same thing. "Unzip" and "decompress" are both used to describe opening a zip file and extracting what's inside. The terms are interchangeable.