This is tricky to do with your
Everything.ini.
The Options UI is currently the easiest option to build your filters.
Use a semicolon delimited (;) list of wildcard filters:
Include only folders:
relativepath1;recurringDirName
-relativepath1 will match a folder named relativepath1 anywhere on the system.
-subfolders in these folders are included.
Exclude only folders:
**\relativepath1\src\third-party;binaryDir
-because we use a \ in the search above, we need to prefix relativepath1 with **\ as this will match the whole path and filename.
files in binaryDir (including subfolders) are excluded.
Include only files:
*.cpp;*.h;*.txt
Exclude only files:
*.exe;*.jpg
Notes:
Everything will match the whole basename.
Include a backslash (\) to match the whole path and filename.
Use wildcards to match partial searches.
Use the regex: prefix to match complex regular expressions, including negative look ahead searches.