TGZ
TGZ archive formatUsed for packaging files and folder structures.
- Family
- Archives
- MIME
- application/x-gtar
Convert TGZ to ZIP online. See the real archive extraction and repackaging behavior, preservation limits, and a format-specific acceptance test.
Unpacking TGZ exposes its entries, and a new ZIP package is built from their filenames and folder paths. Compression gets rebuilt from scratch, and archive-level encryption, comments, or recovery records should never be assumed to carry over. TGZ is unwrapped from Gzip before TAR entries are enumerated, keeping outer-stream integrity separate from member paths, permissions, links, and checksums. ZIP output stores each entry compressed independently for broad sharing, though filename encoding, encryption method, permissions, symbolic links, and extraction safety all vary by which tool opens it.
Read structure - A TAR folder stream compressed as one Gzip payload. Rebuilt structure - A widely supported archive carrying files, folders, and per-entry compression.
Used for packaging files and folder structures.
Designed for bundling and compressing files.
Decompress and extract both layers, then compare paths, Unicode names, file counts, permissions, links, and checksums.
Extract on the destination system and compare folder paths, Unicode names, file counts, and checksums.
Gzip protects the TAR byte stream but does not independently validate each member, and non-Unix tools may alter permissions or links.
Permissions and symbolic links are not preserved consistently, and encrypted ZIP methods vary by extractor.
a widely supported archive carrying files, folders, and per-entry compression is what gets written, labeled as application/zip. Whether that actually opens depends on the receiving application, not on the file extension.
ZIP is the right move once the recipient's archive tool cannot reliably open TGZ; judge success by the extracted folder tree, not by the new package's file size.