Fast parallel file copying with progress tracking.
This crate provides efficient file and directory copying operations with:
- Parallel directory enumeration using
jwalk - Parallel file copying using
rayon - Copy-on-write support via
reflink-copy(APFS, Btrfs,ReFS) - Progress callbacks for UI integration
- Fast file counting
Example
use ;
// Count files first for progress bar
let total = count_files;
copy_directory?;