Unzipping a file means extracting the original documents from their 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 take up less space. Unzipping extracts those original files back to their full size and puts them where you can actually use them. On Windows, Mac, and Linux, unzipping is built into the operating system — you do not need to install anything extra.

The steps differ slightly depending on what device you use, but the result is the same: you end up with usable files in a folder on your computer instead of a single compressed archive.

Key Takeaways

  • On Windows, right-click the .zip file and select "Extract All" to unzip it in the same folder where the .zip file sits.
  • On Mac, double-click the .zip file and it unzips automatically; the original files appear in the same location.
  • On Linux, use the command line tool unzip or a file manager's right-click menu, depending on your distribution.
  • After unzipping, check that all files extracted correctly by opening the new folder and counting the files against what you expected.
  • The original .zip file remains on your computer after unzipping unless you delete it manually.

Unzipping on Windows 10 and Windows 11

Windows includes built-in unzip functionality, so you do not need third-party software. Locate the .zip file on your computer (usually in Downloads or on your Desktop). Right-click the file name and a menu appears. Select "Extract All" from that menu.

A dialog box opens asking where you want the extracted files to go. By default, Windows suggests creating a new folder in the same location as the .zip file, with the same name minus the .zip extension. For example, if your file is called documents.zip, Windows offers to create a folder called documents and put the unzipped contents inside it. Click "Extract" and Windows does the work. When it finishes, a folder window opens showing your extracted files.

If you want the files to go somewhere else, click "Browse" in that dialog box before clicking "Extract", and choose a different location. This is useful if you want all your unzipped files in one central folder rather than scattered across your computer.

Unzipping on Mac

Mac makes unzipping even simpler than Windows. Find the .zip file in Finder (your file browser). Double-click it. That is all. The Mac automatically unzips the file and places the extracted contents in the same folder where the .zip file sits. You will see a new folder or file appear within seconds.

If you have many .zip files to unzip at once, you can select them all in Finder (hold Command and click each one), then right-click and choose "Open". Mac will unzip all of them in the same folder. The original .zip files stay where they are; unzipping does not delete them.

If the unzipped folder does not appear right away, try refreshing the Finder window by pressing Command+R, or close and reopen the folder window.

Unzipping on Linux

Linux distributions vary, but most include the unzip command-line tool by default. Open a terminal window and navigate to the folder containing your .zip file using the cd command. For example, if your file is in Downloads, type cd ~/Downloads and press Enter.

Once you are in the correct folder, type unzip filename.zip (replacing "filename" with the actual name of your .zip file) and press Enter. The terminal extracts all files and shows you a list of what was extracted. The files appear in the same folder as the .zip file.

If your Linux distribution includes a graphical file manager (like Nautilus or Dolphin), you can also right-click the .zip file and look for an "Extract" or "Extract Here" option. The process works the same way as the command line, but you do not have to type anything.

What to do if the unzip fails or seems incomplete

Sometimes a .zip file does not unzip cleanly. The most common reason is that the file was corrupted during read. Try downloading the .zip file again from the source, then attempt to unzip it. If you are downloading from email, make sure the read finished completely before you tried to unzip — a partially downloaded file will fail.

Another reason unzipping might fail is that the .zip file contains a password. If you see a prompt asking for a password after you try to unzip, ask whoever sent you the file for the password. On Windows, you will see a password field in the extraction dialog. On Mac and Linux, the terminal or file manager will prompt you to enter the password before proceeding.

After unzipping, open the extracted folder and count the files. If you expected 10 files but only see 8, the unzip may have been interrupted. Try unzipping again. If the problem persists, the original .zip file may be damaged, and you should ask for a fresh copy.

Where unzipped files end up and how to organize them

By default, unzipped files land in the same folder as the .zip file itself. If you unzipped a file called tax-documents.zip from your Desktop, a new folder called tax-documents appears on your Desktop containing all the original files. This is convenient because you know exactly where to find them.

If you want to move the unzipped files elsewhere after extraction, you can drag the folder to a new location, or cut and paste it. The .zip file does not need to stay in the same place as the extracted files — once you have unzipped, the .zip file is just a backup. Many people delete the .zip file after confirming that all files unzipped correctly, to save disk space.

If you are unzipping multiple files from the same .zip archive (because you only needed some of them), you can extract just those files instead of everything. On Windows, open the .zip file like a folder, select the files you want, and drag them to your destination. On Mac and Linux, you can do the same in the file manager, or use the command line to unzip specific files.

Frequently Asked Questions

Can I unzip a file without deleting the original .zip?

Yes. Unzipping does not delete the .zip file — it only creates a copy of the contents in uncompressed form. The .zip file stays on your computer until you manually delete it. You can unzip the same .zip file as many times as you want.

What if the unzipped folder is empty or shows strange characters in file names?

An empty folder usually means the .zip file was corrupted or incomplete. Try downloading it again. Strange characters in file names often happen when the .zip was created on a different operating system or with a different character encoding. The files are usually still usable — try opening them anyway, or rename them to something simpler.

Do I need special software to unzip files?

No. Windows, Mac, and Linux all have unzip built in. Third-party tools like 7-Zip or WinRAR exist, but you do not need them for standard .zip files. Use them only if you encounter a .zip file that your operating system cannot open.

Can I unzip a file directly to a USB drive or external hard drive?

Yes. When the unzip dialog asks where to extract files, browse to your external drive and select a folder there. The unzipped files will be written directly to the external drive instead of your computer's internal storage.

What is the difference between unzipping and opening a .zip file?

Opening a .zip file shows you its contents in a temporary view, but the files remain compressed. Unzipping extracts the files permanently to your hard drive in their original, usable form. Always unzip rather than just opening, unless you only need to peek at what is inside.