ZIP
ZIP archiveUsed for bundling and compressing files.
- Family
- Archives
- MIME
- application/zip
Convert ZIP to TGZ online. See the real archive extraction and repackaging behavior, preservation limits, and a format-specific acceptance test.
The entries in ZIP are unpacked and a new TGZ package is built from their filenames and folder paths. Compression is rebuilt; archive-level encryption, comments, and recovery records are not portable assumptions. ZIP exposes independently compressed entries through its central directory, but filename encoding, encryption method, permissions, and symbolic-link handling vary by extractor. TGZ is the short spelling for a Gzip-wrapped TAR package; validation must decompress the outer stream and then inspect the complete inner member tree.
Read structure - A widely supported archive carrying files, folders, and per-entry compression. Rebuilt structure - A TAR folder stream compressed as one Gzip payload.
Used for bundling and compressing files.
Designed for packaging files and folder structures.
Extract on the destination system and compare folder paths, Unicode names, file counts, and checksums.
Decompress and extract both layers, then compare paths, Unicode names, file counts, permissions, links, and checksums.
Permissions and symbolic links are not preserved consistently, and encrypted ZIP methods vary by extractor.
Gzip protects the TAR byte stream but does not independently validate each member, and non-Unix tools may alter permissions or links.
a TAR folder stream compressed as one Gzip payload is what gets written, labeled as application/x-gtar. Whether that actually opens depends on the receiving application, not on the file extension.
Use TGZ when the recipient's archive utility cannot reliably open ZIP, then validate the extracted tree rather than judging only the new package size.