What unzipping a file means and why you need to do it
When you unzip a file, you are extracting the original files that were compressed and bundled together into a single .zip file. A .zip file is a container — think of it like a suitcase that holds multiple items in a smaller space. Unzipping opens that suitcase and puts the items back where you can use them.
You need to unzip files because many downloads come compressed this way. Software installers, document collections, photo archives, and code repositories often arrive as .zip files to make them faster to read. Your computer cannot run or open the files inside until you unzip them first.
The process is different depending on whether you use Windows, Mac, or Linux, but all three operating systems have built-in tools that do this without needing to buy or read anything extra.
Key Takeaways
- A .zip file is a compressed container holding multiple files; unzipping extracts them back to their original form.
- Windows and Mac both have built-in unzip tools — right-click the .zip file and select extract or uncompress.
- Linux users can unzip files using the command line with the unzip command, or through a file manager if one is installed.
- After unzipping, you will see a new folder containing the original files, and the .zip file itself remains unchanged.
- If unzipping fails, the .zip file may be corrupted, incomplete, or require a password you do not have.
Unzipping on Windows
On Windows 10 and Windows 11, unzipping is built into the operating system. Locate the .zip file on your computer, right-click it, and look for an option that says "Extract All" or straightforward "Extract". Click that option.
A dialog box will appear asking where you want the files to go. By default, Windows creates a new folder in the same location as the .zip file and puts the extracted files inside it. You can change this location if you want the files somewhere else — click "Browse" to choose a different folder. Once you have chosen the location, click "Extract" and Windows will unzip the file.
The extraction usually takes a few seconds to a few minutes depending on how many files are inside and how large they are. When it finishes, you will see the new folder appear. Open it to see the files that were inside the .zip. The original .zip file stays where it was — unzipping does not delete it.
Unzipping on Mac
On Mac, unzipping is even simpler. Find the .zip file in Finder, double-click it, and macOS automatically unzips it for you. That is all you need to do. Within a few seconds, a new folder with the same name (minus the .zip part) will appear in the same location.
If you prefer to do it manually instead of double-clicking, you can right-click the .zip file, select "Open With", and choose "Archive Utility". This does the same thing. The extracted folder will appear next to the original .zip file.
Like Windows, the original .zip file remains after unzipping. You can delete it once you have confirmed that the extracted files are what you needed.
Unzipping on Linux
Linux does not have a single built-in graphical tool for unzipping the way Windows and Mac do, but most Linux distributions include the unzip command-line tool. Open a terminal window, navigate to the folder where your .zip file is located, and type unzip filename.zip (replacing "filename" with the actual name of your file). Press Enter, and the files will extract to the current folder.
If your Linux system has a file manager with a graphical interface — such as Nautilus on GNOME or Dolphin on KDE — you can right-click the .zip file and look for an "Extract" option. The menu may say "Extract Here" or "Extract To". Click it and the files will unzip in the same location.
If you want the files to go into a specific folder, you can use the command unzip filename.zip -d /path/to/folder. Replace "/path/to/folder" with the actual path where you want the files to go. This is useful when you want to keep your downloads organized.
What to do if unzipping fails or asks for a password
Sometimes unzipping does not work. The most common reason is that the .zip file is corrupted — meaning the read was interrupted or the file was damaged. Try downloading the file again and unzipping the new copy.
If the .zip file asks for a password when you try to unzip it, the file was intentionally locked by whoever created it. You will need the correct password to proceed. If you do not have it, contact the person or organization that sent you the file.
Another reason unzipping might fail is that the file is incomplete. This usually happens if the read was cut off before it finished. Check that the .zip file size matches what the website said it should be. If it is smaller, try downloading it again, preferably on a stable internet connection.
Where your unzipped files end up
On Windows and Mac, unzipping creates a new folder in the same location as the .zip file. The folder name is usually the same as the .zip file name, but without the .zip extension. For example, unzipping "photos.zip" creates a folder called "photos" containing all the original files.
On Linux, files unzip to your current directory unless you specify otherwise with the -d flag. If you unzip from your Downloads folder, the files appear there. If you unzip from your home folder, they appear there.
You can move the unzipped folder anywhere you want after extraction. The original .zip file does not need to stay in the same place — it is just a backup copy. Many people delete the .zip file once they have confirmed the unzipped files are correct, to save disk space.
Understanding file permissions after unzipping
On Mac and Linux, unzipped files sometimes have different permissions than the original files had. This usually does not matter for documents, images, or most software. However, if you unzip a script or program that is supposed to be executable, you may need to change its permissions after unzipping.
On Mac, you typically do not need to do anything — the system handles this automatically. On Linux, if a script does not run after unzipping, you can make it executable by opening a terminal, navigating to the file, and typing chmod +x filename. This tells the system the file is allowed to run as a program.
Frequently Asked Questions
Can I open files inside a .zip without unzipping the whole thing?
On Windows and Mac, you can usually double-click a file inside a .zip to open it without extracting everything. The system temporarily unzips just that file. However, if you need to edit the file and save changes, you should unzip the entire folder first, make your changes, and then re-zip if needed.
What is the difference between .zip and other compressed formats like .rar or .7z?
.zip is the most common format and works on all operating systems without extra software. .rar and .7z are other compression formats that sometimes offer better compression but require additional tools to unzip. For most purposes, .zip is the standard.
Do I need to keep the .zip file after unzipping?
No. Once you have unzipped the files and confirmed they are what you need, you can delete the .zip file. It is just a compressed copy. Keeping it only makes sense if you want a backup or plan to send it to someone else.
Why is my unzipped folder so much larger than the .zip file?
Compression reduces file size by removing redundant data. When you unzip, 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.
Can I unzip a file that is split across multiple .zip files?
Yes, but only if they are named correctly — usually as filename.z01, filename.z02, filename.z03, and so on, with a final filename.zip. Place all the files in the same folder and unzip the last one (the .zip file). The system will automatically combine them. If they are not named this way, you may need specialized software.