GZ
GZ archive formatUsed for bundling a folder tree into one shareable file.
- Family
- Archives
- MIME
- application/gzip
Free GZ to TAR conversion online, with the real archive extraction and repackaging behavior, what gets lost, and a concrete way to check the output.
Unpacking GZ exposes its entries, and a new TAR 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. Gzip decoding produces one byte stream and an optional original filename; it does not by itself reveal a directory tree unless that payload is another archive such as TAR. TAR output writes a sequential member stream that can preserve Unix-oriented paths, permissions, and links but supplies no compression unless wrapped separately.
Read structure - A Gzip-compressed byte stream that normally wraps one file rather than a folder tree. Rebuilt structure - An uncompressed archive preserving a Unix-style folder tree, names, and file metadata.
Used for bundling a folder tree into one shareable file.
Designed for packaging files and folder structures.
Decompress the result and confirm the recovered payload has the expected filename and checksum.
List and extract the archive, then compare paths, link targets, permissions, and file counts.
Turning a multi-file archive into GZ alone can lose the expected directory packaging unless TAR is also used.
TAR alone may be large, and permissions, symbolic links, or path conventions can behave differently off Unix.
an uncompressed archive preserving a Unix-style folder tree, names, and file metadata is what gets written, labeled as application/x-tar. Whether that actually opens depends on the receiving application, not on the file extension.
TAR is the right move once the recipient's archive tool cannot reliably open GZ; judge success by the extracted folder tree, not by the new package's file size.