Tested tool guide
Tested browser tools
Checked August 16, 2026
What ZIP File Extractor does, with a checked example
Every ZIP file ends with a table of contents: a central directory recording each entry's name, size, and compression method. This tool reads that directory in your browser, shows the archive as a browsable folder tree, and downloads only the entries you select, with no unzip tool and no server involved. The surprise for most people: the archive is never uploaded, and no folder materializes on your disk. Each chosen file is simply downloaded as-is. For unpacking everything, your operating system's own archive tool is the better fit; this tool is for reaching in and pulling out specific files.
Worked example
A concrete input and expected output from the current implementation.
Input
A ZIP file named summer-2026.zip containing three entries: docs/readme.txt (Deflate, 6,144 bytes uncompressed), assets/logo.svg (Stored, 12,480 bytes), photos/cat.jpg (Deflate, 352,256 bytes).
->
Expected output
Entry list rendered by the tool:
docs/readme.txt - Deflate - 1,864 B compressed / 6,144 B
assets/logo.svg - Stored - 12,480 B / 12,480 B
photos/cat.jpg - Deflate - 348,112 B / 352,256 B
Archive total: 362,456 B compressed / 370,880 B uncompressed
The listing is read from the archive's central directory, which records both size fields per entry, so the totals are exact sums of the entries. The numbers also reflect the format: text deflates to roughly a third of its size, while JPEG data is already compressed and shrinks by barely one percent.