PytonWrapper for GitHub - FastCopyLab/FastCopy
Very easy to use:
pip install PyCopyFast
pathfastcopy = r"C:\path\fcp.exe"
path1 = "c:\\blabla"
path2 = "c:\\blabla2"
asz = (
FastCopy(pathfastcopy)
.force_close()
.no_confirm_del()
.force_start()
.error_stop("=FALSE", join_value=True)
.speed("full")
.log("=FALSE", join_value=True)
# .srcf
.to(path2)
.cmd_diff(path1)
.r_subprocess_run()
)
for xx in asz.stdout.decode("utf-8", "ignore").splitlines():
print(xx)