I want to exclude all folder matching a pattern such as ".metadata", or ".plugins" from my index.
I can see in the Tools->Options Everything Options dialog there is a tab labeled "Indexes->Exclude"
I can select individual folders and add them to the "Exclude folders" such as:
btw,
I don't know why, but I think the delimiter "\" doesn't work with the wildcard "*".
Please try:
!".metadata\";!".plugins\";..
or better:
folder: !"*.metadata";!"*.plugins";..
In Everything, from the Tools menu, click Options.
Click the Exclude tab on the left.
Click Add filter....
Set the filter to: *.metadata
Click OK.
Click Add filter....
Set the filter to: *.plugins
Click OK.
Click OK.
Only one filter can be specified at a time, ie: you can not be use ; to separate folder filters, you must add another folder filter.
! does not work for exclude filters.
void wrote:To exclude folders named .metadata or .plugins:
In Everything, from the Tools menu, click Options.
Click the Exclude tab on the left.
Click Add filter....
Set the filter to: *.metadata
Click OK.
Click Add filter....
Set the filter to: *.plugins
Click OK.
Click OK.
Only one filter can be specified at a time, ie: you can not be use ; to separate folder filters, you must add another folder filter.
! does not work for exclude filters.
I tried this one first. It works perfectly. Thank You!
It is so satisfying to hit Apply (after adding a new exclude expression) and watch files you don't want "disappear" (as object count in lower left goes down).