Hello Ron,
Thank you for your question and for reaching out with your question today.
Robocopy's behavior can sometimes be affected by how it interacts with network and cloud storage. Here are a few considerations and steps you can take to address the issue:
The /FFT
(File-Fix Time) option can help mitigate timestamp differences between systems. It forces Robocopy to round file times to the nearest 2 seconds, which can be helpful when dealing with certain network and cloud storage systems that may have different time precision.
The /XO
(Exclude Older) option tells Robocopy to skip copying files if the source file is older than the destination file.
Use the /XCT
option to compare file attributes and timestamps when determining whether to overwrite files.
Here's an example command to include these possible options:
robocopy "source" "destination" /MIR /FFT /XO /XCT
If the reply was helpful, please don’t forget to upvote or accept as answer.