Is there a copy program faster than Opus's internal copy function?

FastCopy has command line support:
https://fastcopy.jp/help/fastcopy_eng.htm#cmdline

Here's a quick demo.

Copy

%userprofile%\FastCopy\FastCopy.exe /open_window /auto_close {allfilepath} /to={destpath} 
<?xml version="1.0"?>
<button backcol="none" display="both" label_pos="right" textcol="none">
	<label>FastCopy Copy</label>
	<icon1>%userprofile%\FastCopy\FastCopy.exe,0</icon1>
	<function type="normal">
		<instruction>%userprofile%\FastCopy\FastCopy.exe /open_window /auto_close {allfilepath} /to={destpath} </instruction>
	</function>
</button>

Move

%userprofile%\FastCopy\FastCopy.exe /open_window /auto_close /cmd=move {allfilepath} /to={destpath} 
<?xml version="1.0"?>
<button backcol="none" display="both" label_pos="right" textcol="none">
	<label>FastCopy Move</label>
	<icon1>%userprofile%\FastCopy\FastCopy.exe,0</icon1>
	<function type="normal">
		<instruction>%userprofile%\FastCopy\FastCopy.exe /open_window /auto_close /cmd=move {allfilepath} /to={destpath} </instruction>
	</function>
</button>
2 Likes