Hello everyone, I've been in the world of rclone for a while now, but now I'm trying to do a little more advanced things, but I have the following problem.
I want to copy from one folder to another, but copy each file only once, because I then move them from folder to folder and I don't want it to copy it again.
So it had occurred to me to use --log-file=no_copy.txt and with the option --exclude-from=no_copy.txt
But this doesn't work, since the text I get in no_copy is not the pure files but something like "INFO : XXX.jpg: Copied (server side copy)" and the exclude-from variable does not recognize that file name.
Does anyone know what flags or variables I should use so that when copying the rclone files it adds the pure names to the no_copy.txt file?
It is not something you can do with rclone alone. To generate and use your exclusion lists you will have to write a script to extract only file names from --log-file=no_copy.txt .
Use whatever programming language or script you are comfortable with. You can find countless examples on Internet. As you do not provide any details what OS/system you are using it is impossible to give you more specific answer.