What Is a .z01 File (and How to Open It) in 2026
Co-founder and CEO at Peony. I built the data room platform with a background in document security, file systems, and AI. Founded Peony in 2021 in San Francisco.
What Is a .z01 File (and How to Open It) in 2026
I'm Deqian Jia, co-founder of Peony, a data room company. Files that arrive in multiple numbered pieces trip people up constantly, so here is the fast version: you were sent a split ZIP, and there is one right way to open it. This is a utility post — if you just need the file open in the next minute, read the first section and the steps below, then get on with your day.
What is a .z01 file?
A .z01 file is one part of a split ZIP archive — a single ZIP that someone chopped into several files, named filename.z01, filename.z02, and so on, ending with filename.zip. The final .zip part holds the archive's central directory (its index), so the .z01 on its own is only a slice of the data and cannot be opened alone; you need every part in the same folder.
That is the whole answer. If you double-clicked the .z01 and nothing useful happened, that is expected behavior, not a corrupt download.
The naming is defined by PKWARE's official ZIP specification (APPNOTE 6.3.0, the document that governs the ZIP format). Its section on splitting and spanning states verbatim: "Split archives are named as follows. Segment 1 = filename.z01; Segment n-1 = filename.z(n-1); Segment n = filename.zip." So a folder holding Report.z01, Report.z02, and Report.zip is not three files — it is one archive stored across three parts, and the part you actually open is Report.zip.
One thing to rule out early: a split ZIP is not the same as a multi-part RAR (.part1.rar, .r00) or 7-Zip's own volumes (.001, .002). Those are different formats with different tools. If your parts really are .z01, .z02, ... .zip, you have a split ZIP, and everything below applies.
How do you open a .z01 file?
Open the part with the .zip extension, not the .z01. Here are the steps that work in every tool:
- Gather all the parts. Make sure you have downloaded
name.z01,name.z02, ... and the finalname.zip. If you only grabbed the.z01, go back and download the rest. - Put them in one folder. Every part must sit in the same folder and keep its original name and numbering.
- Open the
.zippart (the one ending in.zipor.zipx), not any of the numbered files. Double-click it, or right-click and extract. - Extract to a folder. Your tool reads the sibling
.z01,.z02parts automatically, in order, and rebuilds the original files.
WinZip's own help page says this in as many words: "To open the split Zip file, [open] the file with the .zip or .zipx extension. Don't try to open any of the files with the numbered extensions."
On Windows without WinZip: install 7-Zip (free). Put all parts in one folder, right-click the .zip part, and choose 7-Zip then Extract. It handles the split set the same way.
On macOS: the built-in Archive Utility is unreliable with split archives, so reach for a free third-party tool such as The Unarchiver or Keka. Keep all parts in one folder and open the .zip part. With The Unarchiver, you can also right-click the first part, choose Open With, and pick The Unarchiver. (Apple does not publish an official statement that Archive Utility handles split zips, which is why I steer people to The Unarchiver or Keka rather than relying on the built-in tool.)
Why can't you just rename .z01 to .zip?
Because renaming the extension does not add the data that is missing. The .z01 holds only the first slice of the archive; the central directory — the index that tells a ZIP tool what files are inside and where they start — lives in the final .zip part. Change Report.z01 to Report.zip and you still have a partial file with no index, so it opens as an empty or corrupt archive.
This is the single most common wrong turn, and it is easy to see why: the parts look like they should just concatenate. They do not. WinZip's guidance is blunt about it: "Don't try to open any of the files with the numbered extensions." The right move is always to leave the .z01 alone and open the real .zip part with all the other parts sitting next to it.
If someone genuinely sent you only a .z01 and no .zip, renaming will not save you — you are missing part of the archive and need the sender to re-share the complete set.
How do you combine .z01 parts into a single .zip?
Sometimes you do not just want to extract — you want to merge the parts back into one normal .zip file to store or forward. There are two reliable ways.
With Info-ZIP's zip (the standard command-line tool on Linux and macOS):
- Put every part (
split.z01,split.z02, ...split.zip) in one folder, original names intact. - Run:
zip -s 0 split.zip --out single.zip
The official zip man page documents exactly this: the command will "convert a split archive to a single-file archive." You point it at the .zip part, and it writes a combined single.zip you can open normally anywhere.
With 7-Zip (no command line):
- Put all parts in one folder.
- Open the
.zippart in 7-Zip and extract the contents to a folder. - Select the extracted files, right-click, and use 7-Zip's Add to Archive to compress them into one archive with a normal
7z aoperation (no-vsplit switch).
Do not try to combine the parts by hand — copying .z01, .z02, and .zip together with copy or cat produces a broken file, because the pieces are not laid out for simple concatenation.
Why do .z01 files exist in the first place?
Split zips exist to squeeze a large archive past a size limit. The classic constraint is email attachments. Per Google's official support page, "For personal Gmail accounts, the limit is 25 MB," and "If your total attachment size is greater than the limit, Gmail automatically removes the attachment and adds it as a Google Drive link in the email." On the Microsoft side, the documented default for classic Outlook is smaller: "Outlook 2013 and later versions have a default attachment size limit of 20 megabytes (20480 KB) for Internet email accounts," with Exchange mailboxes defaulting to 10 MB unless an administrator raises it.
So if you needed to email a 90 MB folder in an era before big free file-sharing links, one answer was to split the archive into four ~20 MB parts, send each as its own attachment, and let the recipient reassemble them. The same logic applied to fitting an archive onto fixed-size media or older upload forms with hard caps.
That history is exactly why receiving a .z01 today can feel dated. The split-archive workflow solves a size problem by pushing work onto the recipient — download every part, keep the names, open the right one. It works, but it is fragile, and for documents you care about there is usually a cleaner path, which is the next section.
How do you create a split ZIP yourself?
If you are the one sending, and a split ZIP is genuinely what you need, here is how to make one.
WinZip: in Windows Explorer, select your files, right-click, and choose "Create a Split Zip File" from the WinZip menu. Set the piece size with the "Split Size" dropdown (presets, or Custom Size in megabytes), pick a filename and destination, and click Create. WinZip names the parts Data.z01, Data.z02, and so on, with the last part ending in .zip or .zipx.
7-Zip: select your files, right-click, choose Add to Archive, and set the "Split to volumes, bytes" field to your part size — for example 25m for 25 MB pieces. From the command line, the switch is -v: 7z a archive.7z [files] -v25m. The 7-Zip manual documents the syntax as -v{Size}[b | k | m | g] and even gives a mixed example, 7z a a.7z *.txt -v10k -v15k -v2m. One caution straight from the manual: "Please don't use volumes (and don't copy volumes) before finishing archiving. 7-Zip can change any volume (including first volume) at the end of archiving operation." In other words, let the archive finish before you touch or send any part.
Info-ZIP command line: zip -s 2g -r split.zip foo splits at 2 GB per part. The man page describes -s / --split-size as: "Enable creating a split archive and set the split size. A split archive is an archive that could be split over many files," with the size given as a number plus k, m, g, or t.
A naming caveat worth knowing: 7-Zip's own native volumes are named .7z.001, .7z.002, and so on — that .001/.002 scheme is not the same as .z01. The .z01, .z02, ... .zip convention specifically comes from WinZip and PKZIP-style split zips. Pick WinZip or zip -s if you specifically need .z01 output.
What are the common .z01 errors and how do you fix them?
Almost every "I can't open my .z01" problem comes down to one of a handful of causes. Here is the fix table.
| Error or symptom | Cause | Fix |
|---|---|---|
Double-clicking .z01 does nothing, or opens an empty/corrupt archive | You opened the .z01 instead of the final .zip part | Open the part ending in .zip (or .zipx), with all other parts in the same folder |
Renamed .z01 to .zip and it still fails | The .z01 has no central directory; renaming does not add it | Undo the rename; open the real .zip part instead |
| "Cannot open file as archive" or a part is reported missing | A segment was not downloaded, or you only grabbed the .z01 | Download every part (.z01, .z02, ... .zip); confirm none are missing |
| Extraction stops partway with a missing-volume prompt | A part is renamed or renumbered, breaking the read order | Restore the original names and numbering, keep all parts in one folder |
| Parts are in different folders and the tool can't find the next one | Segments split across Downloads, Desktop, etc. | Move all parts into a single folder before opening |
| macOS Archive Utility errors on the set | Archive Utility is unreliable with split zips | Use The Unarchiver or Keka and open the .zip part |
| Can't add or remove files from the split zip | Split archives cannot be edited in place | Extract everything, edit, then create a fresh archive |
The reason names and numbering matter so much is baked into the format: Info-ZIP's documentation warns, "Do not change the numbering of these files or the archive will not be readable, as these are used to determine the order the splits are read." When in doubt, leave the parts exactly as they arrived and open the .zip.
When is a split archive the wrong tool for the job?
Splitting is fine when you are handing someone a big pile of files and both sides are comfortable with .z01 mechanics. It is the wrong tool when the real problem is "email won't take my attachment" and the files are client or deal documents.
If you are splitting archives to dodge email caps, a permissioned link does the same job without the size gymnastics. There are no parts for the recipient to reassemble, no renaming traps, and no re-sending a missing .z02. You send one URL, and on the sharing side you get things a split ZIP can never give you: expiry and one-click revoke, plus a record of who opened the document. At Peony, the data room company I run, link expiry and revoke are free on every tier, and page-level view analytics come standard — we serve 6,800+ customers who share exactly this kind of material.
If that sounds closer to your actual situation, these go deeper:
- Large file data room with NDA gates — how to share big files behind an NDA click-wrap instead of splitting and emailing.
- Large file data room — the feature page for sending large files as one link.
- How to send confidential documents via email — seven methods ranked by what they actually protect.
None of that helps you open the .z01 that is sitting in your Downloads folder right now — for that, open the .zip part with all the pieces in one folder. But once the file is open, if you find yourself splitting archives every week to get documents out the door, the link route is worth ten minutes.
Frequently asked questions
what is a z01 file
A .z01 file is the first part of a single ZIP archive that was split across several files. When an archive is split, the parts are named filename.z01, filename.z02, and so on, and the last part is filename.zip. The .z01 holds only a slice of the data — the archive's index (central directory) lives in the final .zip part — so a .z01 is never a standalone archive you can open on its own.
how do I open a z01 file
Put every part in one folder, keep the original names, then open the part with the .zip (or .zipx) extension — not the .z01. WinZip's own help says: "open the file with the .zip or .zipx extension. Don't try to open any of the files with the numbered extensions." 7-Zip and WinZip auto-detect the sibling .z01, .z02 parts and extract them in order. Make sure you actually downloaded all parts.
how to open z01 files without winzip
You do not need WinZip. On Windows, 7-Zip (free, 7-zip.org) opens split zips: place all parts in one folder and open the final .zip part. On macOS, the built-in Archive Utility is unreliable for split archives, so use a free tool like The Unarchiver or Keka and open the .zip part (with The Unarchiver, right-click the first part and choose Open With). The rule is the same in every tool: open the .zip, not the .z01.
can I rename z01 to zip
No. Renaming filename.z01 to filename.zip does not work. The .z01 contains only partial data, not the archive's central directory, which is stored in the final .zip part. Renaming the extension does not add the missing index, so the file still will not open as a valid standalone archive. Keep every part with its original name and open the real .zip part instead.
how do I combine z01 files into one zip
With Info-ZIP's zip tool, run: zip -s 0 split.zip --out single.zip. The official zip man page says this "convert a split archive to a single-file archive." All parts (split.z01, split.z02, split.zip) must sit in the same folder with their original names. Alternatively, open the .zip part in 7-Zip, extract the contents, and re-compress them into one archive with a normal 7z a command (no -v switch).
why do z01 files exist
Split zips exist to move a large archive through size limits — most often email attachment caps. Gmail caps attachments at 25 MB (Google), and classic Outlook defaults to a 20 MB limit for internet email accounts (Microsoft). Splitting a big archive into 20 MB parts historically let people email each piece, or fit an archive onto fixed-size media. The parts are reassembled on the other end into the original single archive.
how do I create a split zip file
In WinZip, right-click your files, choose "Create a Split Zip File," pick a "Split Size," and click Create. In 7-Zip, choose Add to Archive and set the "Split to volumes, bytes" field (for example 25m); the CLI is 7z a archive.7z [files] -v25m. With Info-ZIP: zip -s 2g -r split.zip foo splits at 2 GB per part. Note 7-Zip's own volumes are named .001/.002; the .z01/.zip scheme is the WinZip/PKZIP convention.
what does the z02 or z03 extension mean
They are the middle parts of the same split ZIP. PKWARE's APPNOTE spec names the segments filename.z01, filename.z02, up to filename.z(n-1), and the final segment filename.zip. So .z02 is the second slice, .z03 the third, and so on. You need all of them plus the final .zip in one folder to extract successfully — the numbering tells your unzip tool what order to read them in.
why does my z01 extraction say a part is missing
Extraction fails when a segment is absent or renamed. Every part (name.z01, name.z02, ..., name.zip) must be present, keep its original name, and stay in the same folder. The most common cause is downloading only the .z01 and not the final .zip, or renumbering the parts. Info-ZIP's man page warns: "Do not change the numbering of these files or the archive will not be readable." Re-download any missing part and try again.
can I edit or add files to a split zip
No. Split archives cannot be modified in place. Info-ZIP's zip documentation states plainly that "Split archives cannot be updated," and WinZip disables adding or removing files on a split zip. To change the contents, extract everything to a folder, make your edits, and create a fresh split archive from scratch. This limitation is one reason split zips are awkward for documents you revise often.
How do I send files that are too big for email without splitting them?
Skip the split archive and share a link instead. With Peony (peony.ink), a data room company used by 6,800+ customers, the free tier lets you upload large files and send one link — no 25 MB email cap, no .z01 parts for the recipient to reassemble. Every tier, including Free, adds link expiry and one-click revoke plus page-level view analytics, so you also see who opened the document. Paid plans start at $30/admin/month for screenshot protection.
The short version
A .z01 is part one of a split ZIP. Put all the parts (.z01, .z02, ... .zip) in one folder, keep their names, and open the .zip part — not the .z01 — with 7-Zip on Windows or The Unarchiver or Keka on macOS. Do not rename .z01 to .zip; the archive's index lives in the final .zip part, and renaming will not conjure it. If a part is missing, you need the sender to re-share the complete set.
And if you keep meeting .z01 files because email won't carry your documents, that is a sign the split-archive workflow is doing a job a link does better. Sending large or sensitive files as one permissioned URL — with expiry and revoke free on every tier and analytics on who opened it — is why 6,800+ customers use Peony instead of chopping archives into pieces. If that is you, start on the free tier the next time a file is too big for email.
You might also like
Aug 21, 2026
I Tested 10 Box Alternatives (Only 1 Tracks Reads) — 2026
Aug 21, 2026
I Tested 10 Dropbox Alternatives (Only 1 Tracks Reads) — 2026
Aug 21, 2026
I Tested 10 Google Drive Alternatives in 2026 (After Gemini Came to My Files)

