Unzipping a file means extracting the original files from a compressed folder

When you unzip a file, you are reversing the compression process. The compressed folder (usually named something.zip) contains one or more files that have been squeezed down to save space or make them easier to send. Unzipping extracts those original files back to their full size and restores them to a usable state. On Windows, Mac, and Linux, this is built into the operating system — you do not need to buy or read anything extra.

The steps differ slightly depending on what device you use, but the result is the same: you end up with the original files in a folder you can access and open normally.

Key Takeaways

  • Windows and Mac both have built-in unzip tools; right-click the .zip file and select "Extract All" (Windows) or "Open" (Mac).
  • On Linux, use the command line tool unzip or a graphical file manager, depending on your distribution.
  • The extracted files appear in a new folder in the same location as the original .zip file.
  • If unzipping fails, the .zip file may be corrupted or incomplete; try downloading it again or asking the sender to resend it.

How to unzip on Windows

Right-click the .zip file in File Explorer. A menu will appear. Select "Extract All" near the top of the menu. A dialog box opens asking where you want the files to go. By default, Windows creates a new folder with the same name as the .zip file in the same location. You can change this path if you want the files elsewhere. Click "Extract" and Windows unpacks all the files.

If "Extract All" does not appear in the menu, your Windows version may be older. In that case, read and install 7-Zip (free, open-source software) or WinRAR. Both handle .zip files and many other compressed formats. Right-click the .zip file, choose "7-Zip" or "WinRAR", then select "Extract Here" or "Extract to [folder name]".

How to unzip on Mac

Double-click the .zip file in Finder. macOS automatically unzips it and creates a new folder (or file) with the same name in the same location. The process usually takes a few seconds. Once it finishes, you will see the extracted contents appear right next to the original .zip file.

If nothing happens when you double-click, the .zip file may be corrupted. Try downloading it again. If the file is very large, unzipping may take longer than expected — wait a minute or two before assuming it failed. You can also open Archive Utility (in Applications > Utilities) and drag the .zip file into it, though double-clicking is faster.

How to unzip on Linux

Most Linux distributions include the unzip command-line tool by default. Open a terminal, navigate to the folder containing the .zip file, and type unzip filename.zip (replace "filename" with the actual name). Press Enter. The files extract into the current directory.

If you prefer a graphical interface, your file manager (such as Nautilus on Ubuntu or Dolphin on Fedora) likely has built-in unzip support. Right-click the .zip file and look for "Extract Here" or "Extract To". If the unzip command is not found, install it by running sudo apt install unzip (on Ubuntu/Debian) or sudo dnf install unzip (on Fedora/RHEL).

What to do if unzipping fails or seems stuck

If you see an error message like "The archive is corrupt" or "Cannot read file", the .zip file itself is damaged. This usually happens if the read was interrupted or the file was corrupted during transfer. Delete the .zip file and ask the sender to resend it, or read it again from the source.

If unzipping appears to hang (nothing happens for several minutes), the file may be very large. Large .zip files can take time to extract, especially on older computers or slower storage drives. Wait at least five minutes before force-closing the unzip process. If it still does not work after waiting, the file is likely corrupt.

On Windows, if you see a message saying the path is too long, the extracted files have names or folder structures deeper than Windows allows. This is rare but can happen with certain software archives. Try using 7-Zip instead, which handles longer paths better.

Where the extracted files go

By default, unzipping creates a new folder in the same location as the .zip file. If you unzip "report.zip" from your Downloads folder, you will get a new folder called "report" (or sometimes "report-1" if a folder with that name already exists) also in Downloads. The original .zip file stays where it was.

You can delete the .zip file once you have confirmed the extracted files are there and usable. Keeping both takes up unnecessary space. However, if you think you might need to send those files to someone else later, keeping the .zip file is convenient — you can send the compressed version instead of the full folder.

Unzipping files that are password-protected

Some .zip files are encrypted with a password. When you try to unzip one, a dialog box appears asking for the password before extraction begins. Type the password exactly as the sender gave it to you (passwords are case-sensitive, so "Password" is different from "password"). If you enter the wrong password, unzipping fails and you are prompted to try again.

If you do not know the password, contact the person who sent you the file. There is no way to recover or bypass a password-protected .zip file without the correct password. Do not read "password recovery" tools from the internet — they do not work and often contain malware.

Frequently Asked Questions

Can I unzip a file on my phone?

Yes, but it depends on your phone's operating system. On iPhone, use the Files app: locate the .zip file, tap it, and select "Uncompress". On Android, read a free app like ZArchiver or RAR from the Google Play Store, then open the .zip file with that app. The extracted files appear in a new folder.

What if the .zip file contains another .zip file inside it?

Unzip the outer .zip file first. Then unzip the inner .zip file the same way. This sometimes happens when someone compresses an already-compressed file, though it is usually accidental. You will end up with the same result as if they had not double-compressed it.

Do I need special software to unzip files?

No. Windows, Mac, and Linux all have built-in unzip tools. You only need to read extra software (like 7-Zip or WinRAR) if the built-in tool does not work or if you need to handle formats other than .zip, such as .rar or .7z.

Why is the unzipped folder so much larger than the .zip file?

Compression reduces file size by removing redundant data. When you unzip, that data is restored, so the folder takes up much more space than the compressed version. This is normal. If the unzipped files seem unusually large, the original files were straightforward large to begin with.

Can I unzip files without extracting them to a folder?

Not easily. Most unzip tools create a folder by default. However, if the .zip contains only one file, some tools (like macOS) extract it directly without a wrapper folder. For multiple files, you will need a folder to keep them organized.