đŸ—‚ïžTrifouille

How to open a ZIP file on any device

Guides · ZIP archives · Updated

A ZIP file is a container: it bundles several files into one, compressed. Every modern operating system can open one without extra software. Here is how to do it on each device, and the three reasons behind almost every archive that refuses to open.

On Windows 10 and Windows 11

Right-click the archive, then choose “Extract All
”. Windows suggests a destination folder, created next to the ZIP. Confirm, and the contents appear.

Double-clicking opens the archive like a regular folder: you can browse it and copy a single file out without extracting everything. Be careful, though: do not work directly inside a ZIP opened this way — editing a document from that view does not reliably save it back into the archive.

Since Windows 11 version 23H2, File Explorer also opens 7z and RAR archives natively, with no third-party tool.

On macOS

Double-click the file. The built-in Archive Utility extracts the contents into a folder with the same name, placed next to the archive. There is nothing to install or configure.

macOS does not let you browse an archive without extracting it. If you only need one file from a very large archive, you will have to extract everything or use a third-party tool.

On Linux

In most desktop environments, right-clicking offers “Extract Here”. From the command line, unzip archive.zip extracts into the current folder, and unzip -l archive.zip lists the contents without extracting anything.

If unzip is missing, install it from your distribution's repositories.

On Android and iPhone

On Android, the Files by Google app opens ZIP files: tap the archive, then “Extract”. The contents are placed in the same folder.

On iPhone and iPad, the Files app handles ZIP files natively. Tap the archive and it expands into a folder right next to it; you can also long-press it and choose “Uncompress”.

On mobile, keep an eye on free storage: extracting an archive temporarily doubles the space it takes up.

Extracting only part of the archive

On Windows, double-click the archive to open it, select the files or folders you want, then drag them to their destination. Only the selection is extracted, which saves you from unpacking 10 GB to get one PDF.

From the command line, unzip archive.zip 'invoices/*' extracts only the contents of the invoices folder, and unzip archive.zip report.pdf a single file. On macOS this works in Terminal, whereas the graphical Archive Utility always extracts everything.

Garbled file names after extracting

Accented characters turned into ì or é: the ZIP format is older than Unicode, and for a long time it let each program choose its own encoding for file names. An archive created on one system and opened on another can therefore show mangled names.

File contents are not affected, only the names. 7-Zip on Windows and unzip -O CP437 on Linux let you force the encoding when extracting. For your own archives, the safest approach is to avoid accented characters in file names.

__MACOSX folders and .DS_Store files

An archive created on a Mac and opened on Windows often contains a __MACOSX folder and .DS_Store files. They are Finder metadata: icons, window positions, extended attributes.

They are harmless and useless outside a Mac. You can safely delete them after extracting.

When the archive will not open

Three causes explain the vast majority of failures. First, an incomplete download: the archive arrived truncated and needs to be downloaded again. Second, a password-protected archive: File Explorer can ask for the password, but it cannot open archives encrypted with some newer algorithms. Third, the wrong format: a file named .zip can actually be a .rar or a .7z.

If the archive opens partially or shows a checksum (CRC) error, it is probably damaged.

The “path too long” error on Windows

Windows has historically limited a full path to 260 characters. An archive with deeply nested folders can therefore fail to extract, especially if you extract it into a folder that already has a long path, like C:\Users\firstname.lastname\Documents\Projects\2026\
.

The simplest workaround is to extract as close to the drive root as possible, for example into C:\x, then move the result. Organizing the archive first also helps: a tree sorted by type or by date never goes more than two levels deep.

Once it is open, the archive is often a mess

Opening is only half the job. Many archives pour out hundreds of files with no structure, or reproduce a folder tree that only made sense on the machine that created it.

Instead of extracting and then sorting by hand, you can have the archive organized before you open it: you get a ZIP already sorted by type, by date or by topic, and you extract it once, in the right place.

Try it on your own archive

Free up to 200 MB, no sign-up. Your files are not kept.

Organize my ZIP

Frequently asked questions

Do I need WinRAR or 7-Zip to open a ZIP file?

No. Windows, macOS, Linux, Android and iOS all open ZIP files natively. A third-party tool is only useful for less common formats or password-protected archives.

How do I open a password-protected ZIP file?

You need the password: no legitimate tool gets around that. On Windows, 7-Zip handles most encrypted archives; on macOS, the unzip command in Terminal prompts for the password.

Can I open a ZIP file online, without installing anything?

Yes, several services offer that. Always check what they do with your files: Trifouille, for example, deletes the archive from the server as soon as the download completes and never reads file contents.

Where do extracted files go?

By default, into a new folder named after the archive, created right next to it. On Windows, the “Extract All” wizard lets you pick another location before confirming.

More guides: ZIP archives

For the big picture, start with How to organize a messy ZIP file.