Skip to content

Z Converter

FileFlip converts Z files into 10 other formats entirely inside your browser, using libarchive compiled to WebAssembly. The Z file is never uploaded to a server: it is read off your disk, converted on your own machine, and saved back by the browser. There is no file-size limit and no account to create.

Convert Z to

How do I convert a Z file?#

  1. Drop your Z file onto the converter at the top of this page, or click it to pick one from your computer.
  2. Choose the format you want out of it. FileFlip downloads the engine that conversion needs, once, and your browser caches it.
  3. Conversion starts the moment you pick the format, and the result is yours to download. The work happens in this tab, so nothing is uploaded and nothing is queued.

Is it safe to convert Z files online?#

Yes, because nothing is uploaded. FileFlip converts Z files inside the browser tab you already have open, using WebAssembly builds of the same engines a desktop converter would install. Your file is read from your own disk into the page's memory, and no request carrying it is ever made.

You do not have to take that on trust. Open your browser's network panel, run a conversion, and you will see the engine come down and your file go nowhere. There is no upload, no server-side copy, no retention window, and no account tied to what you converted.

How FileFlip works lists every engine, its version and its download size, and shows how to check for yourself that nothing leaves your machine.

What happens to a Z file#

FileFlip converts Z into 10 formats with libarchive, all of it inside the browser tab. Each conversion below names the engine it uses, what it downloads, and exactly what that conversion keeps or drops.

CategoryArchives
File extension.z
FileFlip supportRead and written
Conversions available10
Engineslibarchive
Downloaded to your browser1.0 MB on the first conversion, then cached

What is a Z file?#

A Z file is a single stream compressed with the LZW algorithm by the Unix compress utility, the format gzip was written specifically to replace once a patent on LZW made distributing compress a legal risk.

There's essentially no reason to create a new Z file today; gzip replaced it decades ago with better compression and no patent risk.

Convert an old Z file to GZ or XZ so modern tools that dropped compress support can actually open it.

The Z file format reference covers the specification, the programs that open one, and what each conversion keeps or drops.

Z questions people ask#

Is a .Z file the same as gzip?

No. A .Z file is compressed with the older Unix compress utility's LZW algorithm, not gzip's DEFLATE, and the two aren't interchangeable; a tool built to read .gz files can't decompress a .Z file.

Why was Unix compress replaced by gzip?

Unix compress used the LZW algorithm, which Sperry, later Unisys, held a patent on, and the resulting licensing risk pushed the Free Software Foundation to write gzip as a patent-free, better-compressing replacement in 1992. Compress fell out of use well before the LZW patent itself expired in 2003.

Can modern tools still open a .Z file?

Many can: gzip itself can decompress .Z files even though it can't create them, and tools like 7-Zip and The Unarchiver read the format too. Native support has thinned out over the decades, so an old .Z file that a tool won't open usually just needs a dedicated uncompress utility or a converter.