Hi Vagulus,
Thanks for raising this. In File Explorer, “same name” means the file name match in the destination folder. It does not use the modified date to decide whether to copy the newer version automatically. Because of that, choosing Skip leaves the existing file unchanged, even if the source file is newer.
If your goal is to keep a backup updated with new and changed files only, a more reliable workaround is to use Robocopy instead of the standard File Explorer copy prompt. You can kindly follow these steps:
- Open Command Prompt, run this preview first:
robocopy "C:\Source" "D:\Backup" /E /XO /L -
/Eincludes subfolders,/XOskips source files that are older than the destination, and/Lshows a preview only. - If the preview looks correct, run the same command again without
/L:robocopy "C:\Source" "D:\Backup" /E /XO
This will copy new files and update files where the source is newer. Avoid using /MIR unless you want the backup location to exactly match the source, because Microsoft notes it can also remove files from the destination.
I hope this helps clarify how File Explorer handles files with the same name and gives you a simpler way to keep your backup current.
Let me know if you need further assistance, feel free to ask me by clicking "Add Comment" or "Add Answer" if you cannot add comment so your response will be visible. Thanks for your effort.
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.