COMPARISON GUIDE (2026)

RAW, ZIP, or ZSTD: Backup File Formats

  1. RAW – max speed, no compression, takes up a lot of space
  2. ZIP – saves space, slow compression
  3. ZSTD – optimal balance: fast compression, saves space
  4. MultiDrive supports all three backup file formats with hash calculation.

Imagine you're creating a full system backup of your drive into one big file. The only question is how that disk backup file gets saved – as-is, or "compressed" to take up less space.

Compression is just like what your computer does when you zip up a folder before emailing it. The data's still there, it's just been reorganized to take up fewer bytes on disk. When you restore the backup, everything gets unpacked back to normal.

That's basically what a backup file format is. The format you choose affects how fast the backup runs, how much storage it uses, and how quickly you can restore your system backup if something goes wrong.

In this article

Backup File Formats Explained

RAW – "as-is"

Your drive gets copied byte by byte, including empty space. Fast, straightforward, and reliable.

  • No compression. Data is written exactly as it appears on disk.
  • 1:1 sector mapping. Each byte in the backup file corresponds to a byte on drive.
  • Maximum speed. No CPU overhead from compression algorithms.

Downside: the backup file is the same size as your drive. 500GB drive → 500GB backup. If your drive is large, you'll need a lot of storage space.

ZIP – "compressed"

Data gets compressed before saving – like a regular ZIP archive you'd use to send files by email.

  • Data compression. Reduces backup file size by 40-70%.
  • Standard ZIP format. Compatible with ZIP extraction tools.
  • Space efficient: A 500GB drive might create a 200-300GB backup.
  • Split support. Easily split into multiple smaller backup files.

Downside: backups can take twice as long as RAW. On fast NVMe drives, ZIP can be 3 times slower, because compression becomes the bottleneck, not the drive itself.

ZSTD – "modern compressed"

ZSTD, short for Zstandard, is a new compression algorithm developed by Meta (Facebook) and released in 2016. Optimizes speed-to-compression ratio.

  • Data compression. Reduces backup file size by 35–68%.
  • Space efficient. A 500GB drive might create a 210–290GB backup.
  • Fast decompression. Restoring a ZSTD backup is significantly quicker than ZIP.

Performance Benchmarks

Performance depends on your hardware, but here are representative benchmarks from testing on modern Windows systems.

Backup speed

ScenarioRAWZIPZSTD
500GB HDD (50% full)45 min85 min52 min
1TB SSD (70% full)28 min65 min35 min
256GB NVMe SSD (80% full)6 min18 min9 min
2TB HDD (mostly empty)90 min75 min68 min

Note: Empty sectors compress efficiently; on mostly-empty drives, ZIP and ZSTD may outperform RAW.

On fast NVMe drives, the gap between ZIP and ZSTD is most noticeable, compression becomes the bottleneck, not the drive, and ZSTD's faster algorithm makes a real difference.

In MultiDrive, you can track your current backup speed in the 'Stats'.

MultiDrive backup speed shown in the Stats panel

Restoration Speed

Backup File SizeRAW RestoreZIP RestoreZSTD Restore
250GB22 min38 min27 min
500GB42 min75 min51 min
1TB85 min155 min104 min

RAW restores are the fastest – you don't need to decompress, the data goes straight to disk. ZSTD restores are about 30–35% quicker than ZIP, which is important in disaster recovery situations where every minute counts.

Full Backup Storage Efficiency

How much space does each backup file format actually use?

What's on the driveDrive sizeRAWZIPZSTD
Typical office use (Windows + docs)500GB500GB275GB285GB
Developer machine (code + tools)1TB1TB520GB535GB
Media storage (photos + videos)2TB2TB1.85TB1.86TB
Fresh Windows install (mostly empty)256GB256GB65GB63GB

ZIP and ZSTD disk backups save roughly the same amount of space. The real difference is time. ZSTD gets you the same result in about half the backup time.

One thing worth knowing: videos, music, and encrypted files are already compressed internally. Neither ZIP nor ZSTD can shrink them further. If your drive is mostly media, RAW is the smarter choice – you skip the compression step with no downside.

Feature-by-Feature Comparison Table

FeatureRAWZIPZSTD
Backup file speedMaxSlowFast
Restore speedMaxSlowFast
File sizeFull drive size40–70% smaller38–68% smaller
CPU usageMinimal (5–10%)High (50–70%)Low to moderate (10–30%)
Split file supportYesYesNo
CompatibilityImaging tools onlyAny ZIP toolZSTD-aware tools like 7-Zip
Corruption riskLowerSlightly higherSlightly higher
Modern algorithmNoNoYes

Which backup file format should you choose?

Choose RAW when:

  • Speed is the priority.
  • Reliable system backup before a major Windows update or reinstall.
  • Drive contains encrypted, video, or music files. Compression won't compress.
  • Storage is not constrained.
  • Preservation of bit-for-bit forensic validity is required.

Choose ZIP or ZSTD when:

  • Offsite or cloud storage backup costs require file size reduction.
  • Multiple backup versions are necessary.
  • Destination supports small file size limits (FAT32/DVD) and then you need to split the backup.
  • Drive contains system files, code, or documents.

Choose ZSTD specifically when:

  • Speed is critical; ZSTD provides compression results similar to ZIP in roughly 50% of the time.

A practical strategy: use more than one format

You don't have to pick just one. Many people use a simple two-tier approach:

  • Local computer backup in RAW. Keep it on an external SSD or second internal drive, updated frequently. If your system crashes, you can restore it fast.
  • Offsite or cloud backup in ZIP or ZSTD, compressed weekly or monthly backups stored somewhere safe.

This way you get speed when you need it and efficiency for long-term storage. MultiDrive supports RAW, ZIP, and ZSTD. Just select your source drive, choose a disk backup target, pick your format, and start.

Selecting RAW, ZIP, or ZSTD backup format in MultiDrive

Split Backups and File Size Limits

Raw and Zip backup file formats support splitting backups into multiple files, useful for several scenarios:

  • If you're saving to a FAT32 drive (older USB drives, some external drives).
  • If you're backing up to small drives, like USB drives or optical media.
  • If your cloud storage has a per-file upload limit.
  • If you're worried about corruption, splitting means that if one file gets damaged, only that portion needs to be re-backed up. The rest stays intact.

Split backup file recommendations:

DestinationRecommended split size
FAT32 media3.5GB (stay under 4GB limit)
DVD backup4.3GB
General use10–20GB
NTFS, exFAT, or modern file systemsSingle file. No splitting needed

MultiDrive handles split file restoration automatically – simply point to any split file in the sequence, and it will locate and process all parts.

MultiDrive split backup file restoration

Hash Verification and Data Integrity

MultiDrive supports hash verification for all 3 backup file formats. It's a simple but important safeguard: when the backup is created, MultiDrive generates a unique checksum of your data. When you restore, it checks that fingerprint again. If anything doesn't match, you'll know before it's too late.

Supported Hash Algorithms

  • MD5: Fastest, suitable for basic integrity checks (128-bit).
  • SHA1: Good balance of speed and security (160-bit).
  • SHA256: Industry standard, excellent security (256-bit).
  • SHA512: Maximum security for critical data (512-bit).

According to NIST hash function standards, SHA256 is the recommended minimum for cryptographic applications requiring collision resistance.

MultiDrive hash verification settings

Hash Verification Impact on Performance

Hash calculation adds minimal overhead to both RAW and ZIP backups:

  • MD5/SHA1: 2-5% slower backup.
  • SHA256: 5-10% slower backup.
  • SHA512: 10-15% slower backup.

Recommendation: Always enable hash verification (SHA256 minimum) for your backups. The minor performance impact is worth the integrity guarantee.

Download MultiDrivefor Windows 11/10

Frequently Asked Questions

Find answers to common questions about MultiDrive

Yes. ZIP backups can be opened with any standard ZIP tool on Windows, Mac, or Linux. ZSTD requires software that supports the format but most modern backup and archiving tools do.

Yes, both RAW and ZIP formats support splitting into smaller backup files. ZSTD does not support split backups.

All three of them are reliable when used correctly. RAW is the simplest format with the lowest chance of corruption. ZIP and ZSTD add a layer of complexity, but the difference is minimal in practice, especially with hash verification enabled.

Yes, but for network backups, ZSTD or ZIP are the better choice because smaller backup files transfer faster and use less storage.

Both ZIP and ZSTD compress empty and unused disk sectors extremely well, often reducing them by 80–95%. This is one reason why backups of mostly-empty drives are significantly smaller with compressed formats.

Author

Yaroslava Kovalchuk, Atola Technology Team

Yaroslava Kovalchuk

Digital Marketer at Atola Technology

Marketing manager with 10+ years of experience in digital marketing, SEO, analytics, and content strategy.