How to use wildcards

I just discovered rclone yesterday. Now I want to upload only certain files, so I tried to use wildcards:

rclone copy /local/path/witch\ escaped/space/Test* Cloud:cloud/path --dry-run

Unfortunately this resulted in displaying the usage of rclone. So is it not allowed to use wildcards directly in the path?

1 Like

That will expand to multiple files which isn’t supported at the moment.

You can do something like this as a work-around

rclone copy /local/path/witch\ escaped/space/ --include "/Test*" Cloud:cloud/path --dry-run
2 Likes

Alright, will use this. Thanks for your answer.