Jul 14 2022 01:42 AM
Hello,
I don't really know where to reach out, but I really do love Robocopy and hope that someone inside MS finds the tool valuable enough to continue it's development.
I've come across a few issues as of late:
Best regards
Alexander
Jul 15 2022 04:53 AM - edited Jul 15 2022 04:55 AM
As a workaround for the first problem, this PowerShell script provides a simple solution:
Start-Job -ScriptBlock {
robocopy <sourcedir> <destdir> /MOV /MON:1
}
while (1) {
try {Get-ChildItem <sourcedir> | Foreach-Object {$_.LastWriteTime = Get-Date}}
catch{}
Start-Sleep -Seconds 10
}