inclusions/exclusions

Get help for specific problems
Posts: 2
Joined: 20 Jan 2026

earthy

Need to get some inclusions/exclusions regarding the below need:

There is the single root folder = Pixiv.

1. include only the following subfolders (of the above root) and all files in those subfolders (w/o exception).
subfolder "###"
subfolder "zzzCategory"
subfolder "zzzTag"
subfolder "zMisc"

2. the following file types in root folder only:
*.bat
*.jpg
*.lnk
*.ps1
*.url

exclude all the following:
all other subfolders (of the above root) not already included/listed in 1. above
ALL files (w/o exception) in these subfolders.

From other posts, I understand this may require more than one line item.
User avatar
Posts: 2978
Joined: 22 Aug 2012

Plerry

1)
Use a first left-right base location pair with a local Include Filter in which you replace the default * (=everything) by
\###\
\zzzCategory\
\zzzTag\
\zMisc\

(assuming all above subfolders are direct children of the left-right base directories)

2)
Use a second, identical left-right base location pair with
a local Include Filter in which you replace the default * by
*.bat
*.jpg
*.lnk
*.ps1
*.url

and a local Exclude Filter
*\

Note that you define local (=left-right pair specific) Filter settings via the funnel icon mid between each left-right base folder pair.
Posts: 2
Joined: 20 Jan 2026

earthy

Perfection! It worked (of course! Well played!)
I appreciate what you do ;)