DataToolsLab

Archive & Compression Tools

Create and open ZIP and TAR archives, compress with gzip, split oversized files into transferable chunks, and inspect a batch before you ship it. Every container is read and written byte-for-byte in the page itself, so confidential data never leaves your device and the tools keep working offline.

Most popular

Create & Extract

Compress

Split, Rename & Bundle

Inspect & Protect

Analyse & Convert

All tools

About Archive & Compression Tools

Archives are where files get handed to someone else: a release bundle, a backup, a folder of assets. These tools do that work locally — ZIP containers are parsed and built in the browser, tarballs are written as POSIX ustar headers, gzip runs on the platform's own compression streams, and images are re-encoded on a canvas. Check an archive's CRC-32 before you trust it, find duplicate files by content hash, verify what actually makes a batch large, rename or re-extension a whole folder, then bundle it with a checksum manifest.

Related categories

Frequently asked questions

Are my files uploaded to build these archives?

No. The ZIP container, the TAR headers, the gzip streams and the CRC-32 checks are all produced inside the page. There is no upload step and no server-side processing — the tools keep working with the network switched off.

ZIP or TAR — which should I use?

ZIP is the friendlier choice for sharing: Windows, macOS and Linux all open it by double-clicking, and it compresses each file individually. TAR preserves Unix file modes, ownership fields and symlinks and is the packaging convention behind npm tarballs, Docker layers and source releases — which is why .tar.gz exists. The Archive Format Converter moves a bundle between the two without losing the folder structure.

Is ZIP password protection secure?

Not by modern standards. The ZipCrypto encryption these tools write is the original PKZIP scheme: it stops casual snooping and opens everywhere, but the key can be recovered from known plaintext and filenames and CRC-32 values stay readable. For anything genuinely secret, encrypt the contents with AES-256 first and then archive them.

Why does a ZIP barely shrink my photos and videos?

JPEG, PNG, MP4 and MP3 are already compressed, so there is almost nothing left for deflate to remove — a few percent at best. Archive tools pay off on text-like data: source code, CSV, JSON, XML, logs and SQL dumps typically shrink by 70–90%. To shrink images, use the Batch Image Compressor, which re-encodes them rather than packing them.

How large an archive can these tools handle?

The limit is the memory a single browser tab is allowed, since archives are assembled in memory before the download starts. A few hundred megabytes is comfortable on a normal machine, and anything in the multi-gigabyte range is better handled by a command-line tool.

Online