ZIP Creator

Compress multiple files or folders into a ZIP archive entirely in your browser, then download it. Dropping a folder preserves its original folder structure inside the ZIP. Files are never sent to a server.


Tips for Creating a ZIP

  • Drop a whole folder and it will be stored in the ZIP with its original folder structure preserved. If you select individual files instead, the resulting ZIP will be flat, with no folder structure.
  • Unchecking "Compress" switches to the STORED (no compression) method, which runs much faster. When bundling files that are already compressed — images, video, audio, ZIP files, and the like — the size barely changes either way, so skipping compression is faster with almost no downside.
  • If you add multiple files with the same name, they are automatically distinguished with a number, like "filename (1).ext". The original contents are never overwritten or lost.
  • Bundling a huge number of files, or very large files, can take a while since everything is processed in your browser's memory — and it may even fail depending on your device. For anything from a few hundred megabytes up to several gigabytes, we recommend splitting the job into a few smaller ZIPs.
  • Entering a password in the password field encrypts the entire ZIP. Leave it blank and the ZIP will open for anyone, as before. The password you set isn't saved anywhere, so if you forget it you won't be able to get the contents back out.
  • You can choose between two encryption methods. AES-256 is strong, but it can't be opened with Windows' built-in "Extract All" feature — you'll need compatible software like 7-Zip. ZipCrypto can be extracted directly with Windows Explorer's built-in feature, but it's a legacy method with weaker encryption. Choose ZipCrypto if the recipient only has Windows' built-in feature available, or AES-256 if confidentiality is the priority.

Frequently Asked Questions

No. Compression happens entirely inside your browser, and the file's contents are never sent to a server.

Yes, that's supported. Enter one in the password field on the creation screen to create an encrypted ZIP. Leave it blank and it won't be encrypted, as before.

If you chose AES-256 as the encryption method, Windows' built-in "Extract All" feature doesn't support AES-256, so it can't extract the file. Use compatible software like 7-Zip or WinRAR, or switch the encryption method to ZipCrypto when creating the ZIP (though note that ZipCrypto is a legacy method with weaker encryption).

Yes. If you drop a folder with no contents, the folder itself is still kept as an entry in the ZIP.

Use the "ZIP Extractor" tool in the same File Operations category. It also automatically fixes garbled filenames between Windows and Mac.
ツールくん

Side Note — What Can (and Can't) Be Compressed

ZIP's DEFLATE compression excels at data where the same pattern repeats, like text files or bitmap images. Files that are already compressed — JPEG, PNG, MP4, MP3, and so on — have almost no repeating patterns left, so putting them in a ZIP barely changes their size (it can even grow slightly).

This property, turned on its head, is exactly how a "zip bomb" works. A file that repeats a single character (say, the digit 0) over and over compresses at an almost unbelievable ratio — in theory, a ZIP just a few kilobytes in size could expand to several terabytes once extracted. That's one reason it isn't a good idea to blindly extract every file inside a ZIP you don't trust.

Incidentally, files ending in ".zip" aren't the only ones that are actually ZIP files under the hood. Microsoft Office's .docx and .xlsx, Java's .jar, and Android's .apk are all built on a ZIP container holding multiple files internally. ZIP is used far more widely than you might expect, as a kind of universal "box for bundling several files into one."