fastcopy-file-transfer-accelerator

Automates multi-threaded file copying and synchronization on Windows using FastCopy command-line options.

4|Updated May 16, 2026
One-click install
npx skills add https://github.com/reason-machines/devtools-skills --skill fastcopy-file-transfer-accelerator-reason-machines
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: fastcopy-file-transfer-accelerator
Source: https://github.com/reason-machines/devtools-skills/tree/main/skills/fastcopy-file-transfer-accelerator
Command: npx skills add https://github.com/reason-machines/devtools-skills --skill fastcopy-file-transfer-accelerator-reason-machines

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Copying large volumes of files on Windows with the default tools is slow, error-prone, and lacks verification or resume capabilities, making backups and migrations unreliable. ## Core Features & Use Cases - High-Speed Transfers: Configures FastCopy buffer sizes, copy modes (diff, sync, move, delete), and multi-threaded I/O for local and network transfers. - Verified Backups: Combines /verify, /acl, /stream, and logging options to build integrity-checked backup and mirror workflows. - Automation: Provides batch scripts, PowerShell wrappers, and scheduled task integration for recurring copy jobs. - Use Case: Set up a nightly scheduled task that mirrors a project folder to a NAS with verification, exclusion filters for node_modules and .git, and a timestamped log file. ## Quick Start Ask the AI to generate a FastCopy command that syncs a source folder to a backup drive with verification and logging enabled.

Frequently Asked Questions about fastcopy-file-transfer-accelerator

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I use FastCopy from the command line?▼

Run fastcopy.exe followed by the source path, destination path, and options such as /cmd=diff or /cmd=sync. Add /verify for integrity checks, /bufsize=256 for buffer tuning, and /log with /logfile to record results.

What is the difference between FastCopy diff and sync modes?▼

Diff mode copies only new or changed files while keeping extra files at the destination, making it suitable for incremental backups. Sync mode mirrors the source exactly, deleting destination files that no longer exist in the source.

What buffer size should I use in FastCopy for large files?▼

Use 32-64MB for small file sets, 128-256MB for medium transfers up to 10GB, and 512-1024MB for very large files like videos or databases. For network transfers over SMB, 256-512MB generally works best.

Does FastCopy work with network paths and NAS shares?▼

Yes, FastCopy supports UNC paths like \\Server\Share directly, and you can map a drive with net use if UNC fails. Use /force_close and a moderate buffer size for reliable network transfers.

Why does FastCopy fail with access denied errors?▼

Access denied errors occur when files are locked by other processes or permissions are insufficient. Run with elevated privileges, add /force_close to close open handles, and include /acl when copying permission-sensitive data.

How do I schedule automatic backups with FastCopy?▼

Create a scheduled task with Register-ScheduledTask in PowerShell that runs FastCopy.exe with arguments like /cmd=sync /verify /log /force_close. Trigger it daily and check the log file and exit code to confirm success.