TAR
TAR archive formatUsed for packaging files and folder structures.
- Family
- Archives
- MIME
- application/x-tar
Convert TAR to TGZ online and see exactly what archive extraction and repackaging changes, what TGZ still can't promise, and how to verify the result.
The entries in TAR 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. TAR is read as a sequential member stream whose path, permission, link, owner, and timestamp records are separate from any outer compression layer. 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 - An uncompressed archive preserving a Unix-style folder tree, names, and file metadata. Rebuilt structure - A TAR folder stream compressed as one Gzip payload.
Used for packaging files and folder structures.
Designed for packaging files and folder structures.
List and extract the archive, then compare paths, link targets, permissions, and file counts.
Decompress and extract both layers, then compare paths, Unicode names, file counts, permissions, links, and checksums.
TAR alone may be large, and permissions, symbolic links, or path conventions can behave differently off Unix.
Gzip protects the TAR byte stream but does not independently validate each member, and non-Unix tools may alter permissions or links.
The writer builds a TAR folder stream compressed as one Gzip payload and labels the result as application/x-gtar. The receiving application - Not the extension alone - Is the final compatibility test.
Use TGZ when the recipient's archive utility cannot reliably open TAR, then validate the extracted tree rather than judging only the new package size.