Duplicate file found in destination - ignoring

I want to upload my local file and once the file is uploaded, remove source file. If file already exist at target(confirmed by hash etc), remove local file. If the source file is locked (im downloading from amazon cloud using amazon drive official client. I assume if the file is still not finished downloading, the file is locked), ignore the file.

Here are the command that I use

rclone move --drive-use-trash -v "C:\cipher" mygmail:encfs

I notice this message.

Duplicate file found in destination - ignoring

What happen? Did rclone find the same file at target and refuse to remove the local file? What is the best command for this task?

Use rclone dedupe mygmail:encfs to check for duplicates. Google drive can duplicate file names sometimes and dedupe will let you fix them.

1 Like