Copy more files together

Is it possible to copy for example all .txt in subfolder?
I tried this but doesn’t work:
rclone copy --no-traverse /.txt google:/

Tnx

Check filters http://rclone.org/filtering/

p.s. you are missing *.txt

I made a mistake writing my command.
I tried like this:
rclone copy --no-traverse **.***txt google:/
But with just one *
i don’t know whit forum correct it :slight_smile:

You’ll want something like this

rclone copy --no-traverse /path/to/dir  google: --include "*.txt"

Tnx, it works.
And is it possible to copy all txt files taking it from any subdir and put in the same dir even though files where in varoius subdir?

Not without a bit of scripting.