Using filters to determine which folders are uploaded. Possible?

Progress:

rclone copy --exclude "/System Volume Information/**" --filter-from filters.txt J:\ crypt:/_test --transfers 10 -v -P --dry-run works perfectly ...

But if I place /System Volume Information/** into the filters.txt, it doesn't work

EDIT: fixed it. - /System Volume Information/** has to be the first entry in filters.txt :smiley:

You don't want to use exclude with filter-from as you'll get odd results. You want to use either include, exclude or filters. Only one and no more.

Sorry - my edit didn't make that clear.

I moved - /System Volume Information/** to the top entry in filters.txt and the final functioning command is simple and clean:

rclone copy --filter-from filters.txt J:\ crypt:/_test --transfers 10 -P

Thank you for all the help!

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