TARGZ
TARGZ specialized file formatUsed for a specialized exchange format tied to one application.
- Family
- Other files
- MIME
- application/octet-stream
Convert TARGZ to GZ online. See the real cross-family format translation behavior, preservation limits, and a format-specific acceptance test.
Converter.now interprets the TARGZ source: a TAR folder stream wrapped in Gzip compression, conventionally written with the compound tar.gz suffix. It rebuilds that content for GZ as a Gzip-compressed byte stream that normally wraps one file rather than a folder tree. Changing the suffix alone would not perform this conversion.
Interpreted input - A TAR folder stream wrapped in Gzip compression, conventionally written with the compound tar.gz suffix. Required output - A Gzip-compressed byte stream that normally wraps one file rather than a folder tree.
Used for a specialized exchange format tied to one application.
Designed for bundling a folder tree into one shareable file.
Treating it as plain Gzip exposes only the TAR payload, while path, permission, and link semantics still require TAR handling.
Turning a multi-file archive into GZ alone can lose the expected directory packaging unless TAR is also used.
a Gzip-compressed byte stream that normally wraps one file rather than a folder tree is what gets written, labeled as application/gzip. Whether that actually opens depends on the receiving application, not on the file extension.
GZ is the right pick once the next application explicitly lists it as accepted and its bundling a folder tree into one shareable file role suits the job better than TARGZ does.
Decompress and extract both layers, then compare paths, Unicode names, permissions, links, counts, and checksums.
Decompress the result and confirm the recovered payload has the expected filename and checksum.