Is rclone sync support alphamatically

OK use filters

create file filter.txt with this content:

+ /[a-b]**/**
+ /[A-B]**/**
+ /[0-2]**/**
- **

then:

rclone sync source: destination:  --filter-from filter.txt

you can add all your other flags

thanks sir i will try

how about --exclude "/[m-z]/" sir...
it will not copy folder m to z ....

when you use filters do not use any include or exclude

this filter mean:

+ /[a-b]**/** <---- include any folder starting with a to b
+ /[A-B]**/** <---- include any folder starting with A to B
+ /[0-2]**/** <---- include any folder starting with 0 to 2
- ** <---- exclude everything else
1 Like

thanks i will try it sir ....

play with it, experiment - use --dry-run before you run it for real

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