List of files transferred to destination

Is there any way to get the list of transferred files when using the copy command?

rclone copy ./source remote:bucket/test

I'm able to pass the progress into a file and parse the data from it. But that seems like a bad and ugly idea.

rclone copy ./test remote:bucket/test  --progress > ./copy.log

Tips like doing lsf rclone lsf remote:bucket will not help in my scenario.

I need to copy files from the source dir to the remote destination.
It is possible, that none, some, or all the files in source dir already are in a remote destination.
After the copy, i need to know what files were transferred regardless of if they are updated or new files in the destination.

hello and welcome to the forum,

have you read these sections?
https://rclone.org/docs/#logging

https://rclone.org/docs/#log-level-level

might try --log-level=INFO
and test with --dry-run

Hi, thanks for the fast reply. It looks like it might be a solution. I'll try.

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.