Use ignore patterns to sync only certain files of one folder

Working solution

!/folder A/*abc*.jpg
/folder A/*
!/folder A
*

1st line includes wanted files in wanted folder, 2nd line excludes all other files in this folder, 3rd line includes wanted folder itself (otherwise 1st line would not work) 4th line excludes rest

It’s somehow logical but confusing :unamused: and heavy on user’s brain :slight_smile:

3 Likes