What is the Z03 file format?
.z03 is the third data segment of a split (spanned) ZIP archive, a multi-part format defined in PKWARE’s APPNOTE.TXT specification. When a ZIP archive is split across multiple files - typically to fit onto removable media or satisfy an upload size limit - the parts are named sequentially: .z01, .z02, .z03, and so on, with the final piece carrying the .zip extension.
A .z03 file contains only a raw continuation of compressed file data; it holds no archive index of its own. The central directory and end-of-central-directory record that identify all archived files reside exclusively in the final .zip segment. As a result, a .z03 file cannot be opened or inspected independently.
To extract the contents, place all segments (.z01, .z02, .z03, and the final .zip) in the same folder, then open the last file (the .zip) using an archiver such as 7-Zip, WinZip, WinRAR, or PeaZip. Attempting to open the .z03 segment directly will produce an error.
The underlying compression in each segment is typically DEFLATE (or STORED for uncompressed entries). Integrity is verified per-file via CRC-32 checksums stored in the central directory of the final segment. Optional encryption (ZipCrypto or AES-256) applies to the archive as a whole, not to individual segments.
Security & safety
RISK: MEDIUMSame risks as any ZIP archive: contents may include malware; always scan after extraction before running anything. The .z03-specific risk is an incomplete set: if any segment is missing (especially the final .zip holding the index, or any middle volume), extraction fails entirely and the missing bytes cannot be recovered.
Format details
in a nutshellPrograms that open Z03 files
Technical details
deep spec| Encoding | Binary - raw continuation of a split ZIP archive stream |
| Byte order | Little-endian |
| Archive position | Third data segment in a .z01/.z02/.z03/…/.zip split set |
| Compression method | DEFLATE (typical) or STORED (uncompressed); inherited from the parent archive settings |
| Encryption support | ZipCrypto or AES-256 - applied across the full archive, not to individual segments |
| Central directory location | Absent in .z03 - central directory and end-of-archive record reside exclusively in the final .zip segment |
| Integrity checking | CRC-32 per file entry stored in the central directory of the final .zip segment; no per-segment checksum |
| Typical segment size | User-defined at creation (e.g. 10 MB, 100 MB, 700 MB for CD-R); no inherent size limit |
| Maximum archive entries | 65,535 files (standard ZIP); ZIP64 extension removes this limit |
| Specification | PKWARE APPNOTE.TXT section 8 (spanning/splitting); current version 6.3.10 (2022) |
| Extraction requirement | All segments (.z01, .z02, .z03, and final .zip) must be in the same folder; open the .zip to extract |
| Magic bytes | PK\x03\x04 (ZIP local file header) where a new file entry starts; mid-stream segments have no leading signature |
| Released | Split/spanned ZIP defined in PKWARE APPNOTE.TXT; .z0x naming used by WinZip since the 1990s |
| Latest version | PKWARE APPNOTE 6.3.10 (2022) |
| Open standard | Yes · royalty-free |
| Specification | pkware.cachefly.net |
Z03 conversions
Community Q&A
asked by usersNo questions yet - be the first to ask about Z03 files.