Uncompressing a zip file takes one action on most devices

To uncompress a zip file, right-click it and select "Extract All" on Windows, "Open" on Mac, or use the command line on Linux. The uncompressed files appear in a new folder in the same location as the zip file. You do not need to install anything — your operating system handles this built in.

The process is the same whether the zip file contains one document or hundreds of files. Once extracted, you can open, edit, or move the files normally. The original zip file stays where it is unless you delete it.

Key Takeaways

  • Windows users right-click the zip file and choose "Extract All" to create a folder with the uncompressed contents.
  • Mac users double-click the zip file and the system automatically extracts it to the same folder.
  • Linux users open a terminal and use the unzip command followed by the filename to extract the contents.
  • Extracting a zip file does not delete the original — both the zip and the uncompressed folder remain until you manually delete one.
  • If a zip file is password-protected, your device will prompt you to enter the password before extraction begins.

Extracting on Windows

Right-click the zip file and look for "Extract All" in the menu that appears. Click it. A window opens asking where you want the files to go — the default location is a new folder in the same directory as the zip file, which is usually what you want. Click "Extract" and wait for the process to finish.

If you do not see "Extract All", your system may be set to open zip files with a different program. In that case, right-click the file, choose "Open with", and select "File Explorer" or "Windows Explorer". Then try right-clicking again and selecting "Extract All".

After extraction, you will see a new folder with the same name as the zip file but without the .zip extension. Open this folder to see the uncompressed files. You can now move, copy, or edit them like any other file on your computer.

Extracting on Mac

Double-click the zip file. The system automatically uncompresses it and creates a folder in the same location. This happens without any dialog boxes or extra steps — the folder appears within a few seconds.

If the folder does not appear, check your Downloads folder or the desktop, depending on where you saved the zip file. The uncompressed folder will have the same name as the zip file minus the .zip extension.

If you have a very large zip file, the extraction may take a minute or two. Do not close the Finder window or move the zip file while this is happening. Once the folder appears, extraction is complete and you can open the files inside.

Extracting on Linux

Open a terminal window. Navigate to the folder where the zip file is located using the cd command. For example, if the zip file is in your Downloads folder, type cd Downloads and press Enter.

Type unzip filename.zip (replace "filename" with the actual name of your zip file) and press Enter. The system extracts all files to the current folder. A list of extracted files appears on the screen as the process runs.

If you want the files to go into a specific folder instead, type unzip filename.zip -d /path/to/folder, replacing the path with the location where you want the files. If the folder does not exist, create it first using mkdir foldername.

What to do if extraction fails

If the zip file will not extract, the file may be corrupted or incomplete. Try downloading it again from the source. If you downloaded it over a slow connection, the transfer may have been interrupted.

If the zip file is password-protected and you do not know the password, you cannot extract it. Ask the person who sent it to you for the password. There is no way to bypass password protection on a zip file.

On rare occasions, a zip file created on one operating system may not extract cleanly on another. If you are having trouble on Mac or Linux, try using a third-party tool like 7-Zip or The Unarchiver, which you can read for free. On Windows, the built-in extraction usually works, but these tools are available as backups.

Managing the original zip file after extraction

After you extract a zip file, both the original zip file and the new uncompressed folder remain on your computer. You can delete the zip file if you no longer need it — the uncompressed files will stay. To delete it, right-click the zip file and select "Delete" or "Move to Trash".

Keep the zip file if you think you might need to send it to someone else or if you want a backup of the original compressed version. Zip files take up less space than the uncompressed files, so storing the zip can save disk space if storage is limited.

If you extracted the files to the wrong location, you can delete the extracted folder and extract the zip file again in a different location. The zip file itself is not affected by extraction, so you can extract it as many times as you need.

Handling zip files with many files or large sizes

If a zip file contains hundreds of files or is several gigabytes in size, extraction may take several minutes. This is normal. Do not interrupt the process or close the window — let it run to completion.

On Windows, the extraction window shows a progress bar. On Mac, the process happens silently in the background. On Linux, the terminal shows each file as it extracts. Once the process finishes, all files are ready to use.

If your computer runs out of disk space during extraction, the process stops and you will see an error message. Free up space on your drive and try extracting again. You may need to delete other files or move them to an external drive to make room.

Frequently Asked Questions

Do I need special software to open a zip file?

No. Windows, Mac, and Linux all have built-in tools to extract zip files. You do not need to read or install anything. Third-party tools like 7-Zip or The Unarchiver are optional and only useful if the built-in tool fails.

What happens to the zip file after I extract it?

The zip file stays on your computer unless you manually delete it. Extracting creates a copy of the files in uncompressed form — it does not remove the original zip. You can delete the zip file once you confirm the extracted files are what you need.

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

On Windows and Mac, you must extract the entire zip file at once. On Linux, you can use the command unzip filename.zip specificfile.txt to extract only one file. For multiple specific files, you can list them one after another or use wildcard patterns.

What if the zip file is password-protected?

Your device will ask you to enter the password before extraction begins. If you do not know the password, you cannot extract the file. Ask whoever sent it to you for the password — there is no way to remove password protection.

Why is my extracted folder so much larger than the zip file?

Zip files compress data to save space. When you extract them, the files return to their original size. A zip file that is 100 MB might contain 500 MB of uncompressed files. This is normal and expected.