Best Free File Copy Tools Tested β FastCopy vs Robocopy vs Everything Else
Move Huge Files Without the Wait β Tier List of Every Tool Worth Using
One-Line Flow: Turn your 10-minute file transfers into 81-second flex sessions using tools Windows doesnβt want you to know about.
Why This Exists (Read This First)
Youβre copying 100GB. Windows says β4 hours remaining.β You alt-tab. You forget. You check back. β6 hours remaining.β What.
This guide makes that never happen again. Zero coding skills needed. Just copy commands, paste, feel like a hacker. Your files move at the actual speed your $200 NVMe is capable of β not the speed Microsoftβs 1998 copy dialog allows.
Real result from this guide: 115GB moved in 81 seconds. Thatβs 1,445 MB/s. Thatβs insane. Thatβs yours now.
β‘ THE CHEAT CODE (Start Here If You're Impatient)
Open Command Prompt as Admin and run this:
robocopy "C:\Your\Source\Folder" "Z:\Your\Destination" /MOVE /E /MT:32 /R:1 /W:1
Thatβs it. You just unlocked multi-threaded file transfers that Windows has hidden since Vista.
What each flag does:
| Flag | Translation |
|---|---|
/MOVE |
Move files (deletes source after copy) |
/E |
Include all subfolders |
/MT:32 |
Use 32 parallel threads (the magic) |
/R:1 /W:1 |
Donβt waste time retrying errors |
For NVMe-to-NVMe? Push it: /MT:64 or /MT:128
Want to copy instead of move? Remove /MOVE
Youβre welcome.
π TIER LIST: Every Tool Ranked (Updated January 2026)
S-TIER: The Untouchables
1. FastCopy β THE Speed King 
Link: https://fastcopy.jp/
Why itβs broken (in a good way):
- Bypasses Windows API completely β talks directly to your drive
- Zero OS cache usage β other apps stay fast while copying
- Built-in SHA verification β know your files arenβt corrupted
- Paths longer than 260 characters? No problem.
Latest Version: 5.11.2 (December 2025)
FastCopy.exe /cmd=move /speed=full /verify /auto_close "C:\source" /to="Z:\dest\"
Shell Integration: Settings β Shell Extension β Install
Now you get βCopy (FastCopy)β in your right-click menu. Chefβs kiss.
License: Free for personal use. Pro for workplace.
2. Robocopy β Already On Your PC
Built into Windows. Youβve had this the whole time.
Best command for speed:
robocopy source dest /E /MT:128 /R:1 /W:0 /NP /NDL /NFL /LOG:NUL
Translation:
/MT:128β 128 threads (adjust to your CPU)/NP /NDL /NFL /LOG:NULβ shut up and copy faster
For network transfers with resume:
robocopy "\\server\share" "D:\Local" /E /Z /MT:16 /R:5 /W:10
The /Z flag = restartable mode. Survives network drops like a cockroach.
3. rclone β The Swiss Army Nuke
Link: https://rclone.org/downloads/
Not just for cloud. Works local too. Multi-threaded. Verifies checksums automatically.
rclone copy C:\source Z:\dest --progress --transfers=32 --checkers=16
Jeff Geerling got 4x faster transfers using --multi-thread-streams=32 vs rsync. Thatβs not a typo.
A-TIER: Excellent Choices
4. TeraCopy β For Normal Humans
Link: https://www.codesector.com/teracopy
Pretty GUI. Drag and drop. Pause/resume. Skips bad files. Your mom could use this.
Slightly slower than FastCopy. Much easier to use. Free version is fully functional.
5. Ultracopier β Open Source Champion
Link: https://ultracopier.first-world.info/
Version: 3.0.1.5 | License: GPL3 (100% free forever)
Completely replaces Windows copy dialog. Pause/resume. Speed limiting. Error handling. No catch.
6. FreeFileSync β Best For Sync/Backup
Link: https://freefilesync.org/
Version: 14.6
Not just copying β intelligent sync. Compares folders first, only copies what changed. Multi-threaded in donation version. Cross-platform.
B-TIER: Specialized Tools
7. ExtremeCopy β The Underdog
GitHub: https://github.com/kevinwu1024/ExtremeCopy
Open source C++. Auto-optimizes for your hardware. 20-120% faster than Explorer. Pause on locked files, resume later.
8. BITS (Built into Windows)
Import-Module BitsTransfer
Start-BitsTransfer -Source "\\server\file.iso" -Destination "C:\local\" -Asynchronous
Survives reboots. Best for network transfers.
AVOID THESE 
| Tool | Why |
|---|---|
| RichCopy | Dead since 2009 |
| Kill Copy | Abandoned |
| Copy Handler | Last update 2016 |
| SuperCopier2 | Just use Ultracopier |
| GS RichCopy 360 | $$$$ enterprise only |
π§ HIDDEN DISCOVERY: Windows 11 Dev Drive (Up to 94% Faster Copies)
Microsoft quietly added ReFS Block Cloning to Windows 11 24H2. This is Windows Server tech that nobody told consumers about.
What Block Cloning Actually Does
Instead of copying every byte:
- Creates a metadata pointer to original data
- Both files share the same physical blocks
- Only creates new blocks when you modify one file
- Result: Copies become nearly instant
Microsoftβs Own Numbers
| Operation | NTFS | ReFS Block Cloning | Improvement |
|---|---|---|---|
| 10GB file copy | X seconds | X/10 seconds | Up to 94% |
| Code builds | baseline | -28% | 28% faster |
| Delete node_modules | 24.5s | 9.2s | 62% faster |
How To Create One
Settings β System β Storage β Advanced storage settings β Disks & volumes β Create new VHD β Format as Dev Drive (ReFS)
Requirements:
- Windows 11 24H2+
- Cannot be boot drive
- 50GB minimum recommended
- 16GB RAM recommended
Best for: Source code, node_modules, build outputs, working copies of large files
Caveat: No compression, no encryption, no quotas. Use for specific workflows, not general storage.
π‘οΈ Windows Defender: The Silent Speed Killer
Every. Single. File. Operation. Gets. Scanned.
For thousands of small files, this adds up to⦠pain.
Check If Itβs Affecting You
Get-MpComputerStatus | Select RealTimeProtectionEnabled, IoavProtectionEnabled
Add Exclusions (Run As Admin)
# Exclude folders:
Add-MpPreference -ExclusionPath "Z:\MyWorkFolder"
Add-MpPreference -ExclusionPath "C:\Dev"
# Exclude tools:
Add-MpPreference -ExclusionProcess "fastcopy.exe"
Add-MpPreference -ExclusionProcess "robocopy.exe"
# Check what you've excluded:
Get-MpPreference | Select ExclusionPath, ExclusionProcess
Dev Drive Bonus
Dev Drives automatically get Defender Performance Mode β async scanning that doesnβt block file operations. Free 30%+ speed boost.
πΎ RAM Disks: When NVMe Isn't Fast Enough
Yes, this is a real thing. Yes, itβs ridiculous. Yes, it works.
Speed Reality Check
| Storage | Read | Write | 4K Random |
|---|---|---|---|
| SATA SSD | ~550 MB/s | ~520 MB/s | ~50K IOPS |
| NVMe Gen3 | ~3,500 MB/s | ~3,000 MB/s | ~500K IOPS |
| NVMe Gen4 | ~7,000 MB/s | ~5,000 MB/s | ~1M IOPS |
| RAM Disk | ~15,000+ MB/s | ~15,000+ MB/s | ~3M+ IOPS |
Best Free RAM Disk Tools (Benchmarked)
OSFMount β Best Overall
https://www.osforensics.com/tools/mount-disk-images.html
Free, unlimited size, consistent speeds.
ImDisk Toolkit β Best Features
https://sourceforge.net/projects/imdisk-toolkit/
Dynamic memory allocation. Save on shutdown. 100% free, open source.
SoftPerfect RAM Disk β Best 4K Performance
https://www.softperfect.com/products/ramdisk/
Older version free (4GB limit). Excellent for small file operations.
Perfect Use Cases
- Redirect Windows TEMP folder β instant temp file operations
- Browser cache β actually fast browsing
- Build artifacts β compiler goes brrr
- Photoshop scratch disk β no more disk bottleneck
Redirect TEMP to RAM Disk
setx TEMP R:\Temp
setx TMP R:\Temp
(Where R: is your RAM disk)
π§ NVMe Optimization: Why Your Fast Drive Feels Slow
Problem 1: SLC Cache Exhaustion
Most SSDs have a small fast cache (~10-50GB). After that fills, speed drops 50-80%.
Fix: Keep 10-20% free. Let drive idle between large transfers.
Problem 2: Thermal Throttling
NVMe controllers get HOT. They slow down to survive.
Check temps: CrystalDiskInfo or your vendorβs tool
| State | Healthy |
|---|---|
| Idle | <45Β°C |
| Load | <70Β°C |
Fix: Add heatsink. Improve airflow.
Problem 3: TRIM Not Running
# Check status:
fsutil behavior query DisableDeleteNotify
# 0 = enabled (good)
# 1 = disabled (fix this)
# Force optimize now:
defrag C: /O
Problem 4: Write Cache Disabled
Device Manager β Disk drives β Your NVMe β Properties β Policies β
Enable write caching
Vendor Tools (Use These)
| Brand | Tool |
|---|---|
| Samsung | Samsung Magician |
| WD | WD Dashboard |
| Crucial | Storage Executive |
| Intel | Intel Memory and Storage Tool |
π§ Sector-Level Tools: Raw Power
dd (via WSL or Linux USB)
Bit-perfect copies. No filesystem overhead. Pure speed.
# Clone entire drive (DESTRUCTIVE to target):
sudo dd if=/dev/nvme0n1 of=/dev/nvme0n2 bs=64K status=progress conv=noerror,sync
# Create disk image:
sudo dd if=/dev/nvme0n1 of=/path/to/image.img bs=64K status=progress
Block size tuning:
bs=64Kβ balancedbs=1Mβ faster for large sequentialbs=4Kβ better error recovery
Clonezilla β Enterprise-Grade Free Cloning
Link: https://clonezilla.org/
Boot from USB. Sector-level or filesystem-aware. Compression on-the-fly. Used by actual IT departments.
HDClone Free Edition
Link: https://www.miray.de/products/sat.hdclone.html
Supports NVMe, M.2, SATA. SmartCopy skips empty sectors. Bootable for offline cloning.
β‘ Advanced Robocopy Commands (Copy-Paste Ready)
Maximum NVMe Speed
robocopy "C:\Source" "Z:\Dest" /E /MT:128 /R:1 /W:0 /NP /NDL /NFL /NS /NC /LOG:NUL
Network With Resume
robocopy "\\server\share" "D:\Local" /E /Z /MT:16 /R:5 /W:10 /LOG:transfer.log
Mirror Mode (Make Destination = Source)
robocopy "C:\Source" "Z:\Mirror" /MIR /MT:32 /R:1 /W:1
/MIR deletes files in destination that donβt exist in source
Copy + Progress Only
robocopy "C:\Source" "Z:\Dest" /E /MT:32 /ETA
π Quick Decision Matrix
| Situation | Use This |
|---|---|
| Just need fast copy, donβt care how | FastCopy with shell integration |
| Already know command line | robocopy /MT:64 |
| Thousands of tiny files | RAM Disk β FastCopy |
| Development/builds | Dev Drive (ReFS) |
| Regular backups/sync | FreeFileSync |
| Full drive clone | Clonezilla or vendor tool |
| Network transfers | rclone --transfers=16 |
| Donβt want to think | TeraCopy |
π§ͺ Benchmark Your Setup
CrystalDiskMark
https://crystalmark.info/en/software/crystaldiskmark/
Tests sequential and random I/O. Compare to your driveβs specs.
DiskSpd (Microsoftβs Tool)
# Sequential read:
diskspd -b1M -d30 -o4 -t4 -W0 -r -L -w0 C:\testfile.dat
# Sequential write:
diskspd -b1M -d30 -o4 -t4 -W0 -r -L -w100 C:\testfile.dat
Measure Your Copy Speed
Measure-Command { robocopy "C:\Test" "Z:\Test" /E /MT:32 }
π The Ultimate Setup (If You're Extra)
- Boot Drive: NVMe Gen4+ with good sustained writes
- Dev Drive: Second NVMe as ReFS Dev Drive
- RAM Disk: 16GB ImDisk for temp/cache
- Defender Exclusions: Dev folders, RAM disk, tool executables
- Tools:
- FastCopy (shell integration) for manual copies
- Robocopy scripts for scheduled copies
- rclone for cloud/network
- FreeFileSync for sync workflows
Each layer removes a bottleneck. Stack them all = basically instant.
Quick Links
| Tool | Link |
|---|---|
| FastCopy | https://fastcopy.jp/ |
| TeraCopy | https://www.codesector.com/teracopy |
| Ultracopier | https://ultracopier.first-world.info/ |
| FreeFileSync | https://freefilesync.org/ |
| rclone | https://rclone.org/downloads/ |
| ImDisk Toolkit | https://sourceforge.net/projects/imdisk-toolkit/ |
| OSFMount | https://www.osforensics.com/tools/mount-disk-images.html |
| Clonezilla | https://clonezilla.org/ |
| CrystalDiskMark | https://crystalmark.info/en/software/crystaldiskmark/ |
Windows Explorer copy dialog is just a progress bar for your patience dying.
Robocopy has been free since 2008. Youβre 17 years late. Start now.
robocopy /MT:32 β shorter than your WiFi password, saves more time.
Your NVMe cost $200. Make it act like it.

!