Archive tools 15
Create and extract zip and tar archives, compress or decompress gzip, zlib and deflate streams, split large files into parts and join them back. All of it runs locally, so an archive holding sensitive files never crosses a network.
Zip & tar4
Compress a stream6
Split & join2
Verify & convert3
Questions
Are my archives uploaded?
No. Zip, tar, gzip, zlib and deflate all run in this tab through fflate and a local tar implementation. An archive of private documents never crosses a network.
Which formats can I extract?
Zip and tar, plus raw gzip, zlib and deflate streams. Zip extraction caps at 1 GiB declared in the header, and the tool page is explicit that an archive lying about its size is outside what that guard covers.
Can I split a large file to email it?
Yes. Split file cuts a file into numbered parts and Join files puts them back. The joiner cannot tell that a trailing part is missing, so check the count before you rely on the result.
What metadata do created archives carry?
As little as possible: fixed permissions, uid 0 and a zero timestamp, so building the same input twice gives the same bytes and no path from your machine leaks into the archive.
Do these work offline?
Yes. The compression code is part of the site bundle, which is precached on your first visit.