Is there any way to use rclone move with the --ignore-existing flag that will delete the source file if the file already exists in the destination?
Essentially, I want this:
- move src:fileA to dest:
- dest:fileA already exists
- src:fileA gets deleted because dest:fileA exists
I've tried --delete-after but this only deletes a file after a successful transfer, which doesn't happen because --ignore-existing will SKIP the transfer instead failing or succeeding it.