How to Create a Compressed Folder on Windows, Mac, and Beyond
Compressed folders are one of those everyday file management tools that save storage space, speed up file transfers, and keep related files neatly bundled together. Whether you're emailing a batch of photos, backing up project files, or clearing disk space, knowing how to create one — and understanding what's actually happening under the hood — makes the whole process more predictable.
What a Compressed Folder Actually Does
When you compress a folder, software analyzes the data inside and rewrites it using an algorithm that removes redundancy. Text files and documents compress dramatically because they contain highly repetitive patterns. Images, videos, and audio files compress very little — they've usually already been compressed by their own format.
The result is a single archive file that acts as a container. The most common format is .zip, which has near-universal support across operating systems. Other formats like .7z, .tar.gz, and .rar offer better compression ratios or specific features, but they typically require third-party software to open on a standard machine.
Nothing happens to your original files during compression unless you choose to delete them afterward. The archive is a separate copy.
How to Create a Compressed Folder on Windows
Windows has built-in zip support — no extra software needed.
Using File Explorer:
- Select the files or folder you want to compress
- Right-click the selection
- Choose Send to → Compressed (zipped) folder
- A new
.zipfile appears in the same location, ready to rename
On Windows 11, Microsoft reorganized the context menu. You'll find the compress option under Compress to ZIP file in the right-click menu directly — no "Send to" submenu required.
You can also create an empty zip folder first by right-clicking on an empty area of File Explorer, selecting New → Compressed (zipped) Folder, then dragging files into it.
How to Create a Compressed Folder on macOS
Mac uses the Archive Utility built into the operating system, which creates .zip files by default.
Using Finder:
- Select the file or folder
- Right-click (or Control-click)
- Choose Compress "[folder name]"
- A
.ziparchive appears in the same directory
If you select multiple items before compressing, macOS bundles them into a single file called Archive.zip. For a single folder, the archive takes the folder's name.
macOS doesn't natively support creating .7z or .tar.gz files through Finder — that requires Terminal commands or a third-party app like The Unarchiver or Keka.
How to Create a Compressed Folder on Linux 🐧
Linux users typically work with tar (which bundles files) combined with a compression tool like gzip or bzip2.
To create a compressed .tar.gz archive via terminal:
tar -czvf archive_name.tar.gz /path/to/folder For a straightforward .zip file (requires the zip package):
zip -r archive_name.zip /path/to/folder Most Linux desktop environments also include right-click compression options in their file managers, similar to Windows and macOS.
Compression Format Comparison
| Format | Native OS Support | Compression Ratio | Best For |
|---|---|---|---|
.zip | Windows, macOS, Linux | Moderate | General sharing, email attachments |
.7z | Requires 7-Zip | High | Large files, archiving |
.tar.gz | macOS, Linux (native) | High | Linux/macOS backups, developer use |
.rar | Requires WinRAR | High | Multi-part archives |
Factors That Affect How Useful Compression Will Be
File type matters most. A folder of Word documents or CSV files might shrink by 60–80%. A folder of JPEGs or MP4s might shrink by less than 5% — sometimes the archive is actually slightly larger than the originals due to format overhead.
Number of files. Bundling hundreds of small files into one archive dramatically speeds up transfers even when the size reduction is modest. Fewer items to individually handle means faster upload and download times.
Purpose of the archive. 📁 If you're sharing files via email or a platform with size limits, .zip is the safest choice — the recipient won't need anything extra to open it. If you're archiving large project files for long-term storage and want maximum compression, .7z or .tar.gz is worth the extra step.
OS version. Older versions of Windows (pre-Vista) and macOS had more limited built-in zip support. Modern versions handle zip natively and reliably, but legacy systems may need third-party tools.
Encryption needs. Standard zip files created through File Explorer or Finder are not encrypted. If you need password protection, tools like 7-Zip or WinZip add AES encryption — something the built-in OS tools don't offer on their own.
What Doesn't Change When You Compress
Compression doesn't affect file quality. Zip and 7z are lossless formats — every byte of original data is preserved exactly. Decompressing the archive restores files to their original state, identical to the source.
This is different from lossy compression (like converting a high-resolution image to a highly compressed JPEG), where data is permanently discarded to achieve smaller sizes.
Where Individual Needs Start to Diverge
The mechanics of creating a compressed folder are consistent across platforms. What varies — and what only you can assess — is which format makes sense for your situation, how much compression benefit you'll realistically see given the types of files you're working with, and whether the built-in OS tools cover your needs or whether third-party software is worth adding to your setup. Those answers depend on your operating system, the files themselves, who you're sharing with, and how you're storing or transferring them. 🗂️