Unzipping works differently on each operating system, but the basic process is the same everywhere

A zip file is a container that holds other files in a compressed form. To use what is inside, you need to unpack it — a process called extracting or unzipping. On Windows, you right-click the zip file and choose "Extract All". On Mac, you double-click it. On Linux, you use a command or a file manager, depending on which one you have installed. The extracted files appear in a new folder in the same location as the zip file itself.

The zip file stays where it is after you extract. You can delete it once you have confirmed the extracted files are there and working, but you do not have to. Many people keep the zip file as a backup in case they need to send it to someone else or move the files again later.

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 extracted folder appears automatically in the same location.
  • On Linux, use your file manager's extract option or type unzip filename.zip in the terminal.
  • The original zip file remains after extraction and can be deleted once you confirm the extracted files work.
  • If extraction fails, the zip file may be corrupted, incomplete, or require a password you do not have.

Extracting a zip file on Windows

Windows 10 and Windows 11 have built-in zip support, so you do not need to install anything. Locate the zip file on your computer, right-click it, and look for "Extract All" in the menu that appears. Click it.

A window will open 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 if you want the files somewhere else — click "Browse" to pick a different folder. Once you have chosen, click "Extract" and Windows unpacks all the files.

If "Extract All" does not appear in your right-click menu, your zip file may be corrupted or Windows may not recognize it as a zip file. Try renaming it to make sure it ends with .zip. If that does not work, try opening it with a third-party tool like 7-Zip or WinRAR, both of which are free to read.

Extracting a zip file on Mac

Mac handles zip files automatically. Find the zip file in Finder, double-click it, and macOS extracts it when ready. A new folder with the same name appears in the same location, containing all the files that were inside the zip.

If nothing happens when you double-click, the file may be corrupted or incomplete. Try downloading it again if you got it from the internet. If the file came from a Windows computer, it may have a different compression format — try opening it with The Unarchiver, a free app from the Mac App Store that handles more file types than the built-in tool.

Extracting a zip file on Linux

Linux does not have a single standard way to handle zip files, so the method depends on what you have installed. Most Linux distributions include a file manager with built-in extraction. Open your file manager, find the zip file, right-click it, and look for "Extract" or "Extract Here". Click it and the files appear in a new folder.

If your file manager does not have an extract option, open a terminal in the folder where the zip file is located. Type unzip filename.zip (replacing filename with the actual name of your zip file) and press Enter. The files extract to the current folder. If the unzip command does not work, you may need to install it first — on Ubuntu or Debian, type sudo apt install unzip and press Enter.

What to do if a zip file will not extract

A zip file that will not open usually has one of three problems: it is corrupted, it is incomplete, or it is password-protected. If you downloaded it from the internet, try downloading it again — the file may have been damaged during the transfer. If someone sent it to you by email or file-sharing service, ask them to send it again.

If the zip file is password-protected, Windows, Mac, and Linux will all ask you for the password when you try to extract. If you do not have the password, you cannot open it. Ask the person who sent it to you for the password, or ask them to send an unencrypted version instead.

If you have downloaded the file multiple times and it still will not extract, try a different tool. Windows users can try 7-Zip or WinRAR. Mac users can try The Unarchiver. Linux users can try installing a different unzip tool — type sudo apt install p7zip-full on Ubuntu or Debian to install 7-Zip for Linux. These tools sometimes succeed where the built-in options fail.

Where the extracted files go and what to do next

By default, extracted files appear in a new folder in the same location as the zip file. If you extracted a zip file from your Downloads folder, the new folder will also be in Downloads. If you extracted from your Desktop, the new folder will be on your Desktop.

Once the files are extracted, you can move the folder anywhere you want. You can also move individual files out of the extracted folder and delete the folder itself. The zip file stays where it is — extracting does not remove it. You can delete the zip file once you have confirmed that the extracted files are there and work the way you expect.

Extracting multiple zip files at once

If you have several zip files in the same folder and want to extract them all, you can select them together. On Windows, hold Ctrl and click each zip file to select multiple files, then right-click and choose "Extract All". Windows will extract each one into its own folder.

On Mac, select multiple zip files the same way (hold Command instead of Ctrl), then double-click one of them. macOS extracts all of them. On Linux, open a terminal in the folder and type for file in *.zip; do unzip "$file"; done and press Enter. This extracts every zip file in the current folder.

Frequently Asked Questions

Does extracting a zip file delete the original?

No. Extracting creates a new folder with the files inside. The zip file stays where it is. You can delete the zip file yourself once you have confirmed the extracted files work, but extraction does not do this automatically.

Can I extract a zip file to a different folder than where it is?

Yes. On Windows, the "Extract All" dialog lets you choose a destination folder before extraction starts. On Mac and Linux, you can extract to the default location and then move the folder, or use the command line to specify a destination folder directly.

What if the extracted folder is empty or has only some of the files?

The zip file may be incomplete or corrupted. Try downloading it again if it came from the internet. If it came from someone else, ask them to resend it. If you have tried multiple times and it still does not work, the file may be damaged beyond repair.

Can I extract a zip file without creating a new folder?

On Windows and Mac, the extraction process always creates a folder. On Linux, you can extract directly into the current folder by typing unzip -d . filename.zip in the terminal, which puts the files in the current directory instead of a subfolder.

What is the difference between extracting and opening a zip file?

Opening a zip file shows you what is inside without unpacking it. Extracting unpacks all the files so you can use them. Some programs can open zip files directly without extracting, but most of the time you need to extract first to actually work with the files.