I'm using rclone to copy a shared Google Drive folder, but I'm running into a problem: when copying the same folder to the same location over and over again, rclone creates new folders each time, each a duplicate to an existing folder in the folder. I believe this is due to the fact that rclone only considers two files identical if they match name, hash and mod-time, rather than just name. So, is there a flag I can pass to rclone so it will skip based only on identical file names? I tried --ignore-existing but it didn't work.
An example: rclone copy remote:folder_to_copy_from remote: --drive-folder-id=id_of_folder_to_copy_to copies folder_to_copy_from/a.txt to folder_to_copy_to, even if folder_to_copy_to/a.txt exists.