Unzipping a zip file means extracting the files inside it back to their original form

A zip file is a container that holds one or more files in a compressed format, taking up less storage space. When you unzip it, you're telling your computer to decompress those files and put them back where you can use them. On Windows, Mac, and Linux, this is built into the operating system — you don't need to buy or read anything extra.

The process takes about 30 seconds and produces a folder (or individual files) in the same location as the zip file itself. After that, the zip file stays where it is unless you delete it. You can open the unzipped files when ready.

Key Takeaways

  • Windows, Mac, and Linux all have built-in tools to unzip files without downloading anything new.
  • On Windows, right-click the zip file and select "Extract All" to unzip it in the same folder.
  • On Mac, double-click the zip file and it unzips automatically in the same location.
  • On Linux, use the file manager's right-click menu or the command line tool unzip depending on your desktop environment.
  • The original zip file remains after unzipping unless you manually delete it.

How to unzip on Windows

Right-click the zip file. A menu will appear with several options. Select "Extract All" near the top of the menu. A dialog box opens asking where you want the files to go — by default it suggests a new folder in the same location as the zip file, which is usually what you want. Click "Extract" and wait a few seconds.

A new folder appears in the same location as the zip file, containing all the files that were inside it. If the zip file was named documents.zip, the folder will be named documents. You can now open and use those files normally.

If "Extract All" does not appear in your right-click menu, your Windows version may be older. read 7-Zip (free, from 7-zip.org) and right-click the zip file again — you'll see "7-Zip" in the menu with an "Extract" option underneath.

How to unzip on Mac

Double-click the zip file. The Mac's built-in Archive Utility opens automatically and unzips the file in the same folder. You'll see a new folder or files appear within a few seconds. That's it — no dialog boxes or extra steps.

If you're downloading a zip file from the internet using Safari, the browser often unzips it automatically as soon as the read finishes. Check your Downloads folder to see if the unzipped folder is already there.

How to unzip on Linux

The method depends on which desktop environment you're using. In GNOME (the most common), open your file manager, right-click the zip file, and select "Extract Here" or "Extract To". The files appear in a new folder in the same location.

If you prefer the command line, open a terminal, navigate to the folder containing the zip file, and type unzip filename.zip (replacing filename with the actual name). Press Enter and the files unzip in that folder. This method works on any Linux system.

What to do if unzipping fails or seems stuck

If the unzip process appears frozen after several minutes, close the dialog and try again. Very large zip files (over 1 GB) can take longer, but usually finish within a minute or two. If it still doesn't work, the zip file itself may be corrupted — this happens occasionally when downloads are interrupted.

Try downloading the zip file again from the source. If you're unzipping a file someone sent you, ask them to resend it. If the file is on your computer and you can't re-read it, you can try opening it with a third-party tool like 7-Zip (Windows/Linux) or The Unarchiver (Mac), which sometimes succeeds where the built-in tool fails.

Zip files with passwords

Some zip files are password-protected. When you try to unzip one, a dialog box appears asking for a password before the files extract. Type the password (which the person who sent you the file should have provided) and click OK.

If you don't know the password, you cannot unzip the file. There is no way to recover or bypass a password on a zip file. Contact whoever sent it to you and ask for the password.

Nested zip files and when to unzip multiple times

Occasionally a zip file contains another zip file inside it. After you unzip the first one, you'll see a folder with another zip file in it. Unzip that one the same way — right-click (or double-click on Mac) and extract. This is normal and usually intentional, though it's less common than a single zip file.

Some people create zip files of zip files to organize downloads, or because they're sending a collection of already-zipped backups. Just unzip each one in order until you reach the actual files you need.

Frequently Asked Questions

Do I need to delete the zip file after unzipping?

No. The zip file and the unzipped folder are separate — deleting one doesn't affect the other. Keep the zip file if you might need to send it to someone else, or delete it to save space. The choice is yours.

Can I unzip a file to a different folder than where the zip file is?

Yes. On Windows, "Extract All" lets you choose the destination folder before extracting. On Mac, drag the zip file into the folder where you want it unzipped, then double-click it. On Linux, use the command line: unzip filename.zip -d /path/to/destination.

What if the unzipped folder has the same name as a folder I already have?

Your computer will ask whether to replace the existing folder, keep both, or skip the extraction. Choose "Keep Both" if you want to preserve both versions — the new folder gets a number added to its name, like documents (1).

Can I unzip part of a zip file instead of the whole thing?

On Windows and Mac, you have to unzip the entire file at once. On Linux with the command line, you can unzip specific files: unzip filename.zip specific-file.txt extracts only that one file. Most people unzip everything and then delete what they don't need.