Exclude all folders named "cap"?

Get help for specific problems
Posts: 93
Joined: 30 Dec 2008

dirki-boy

How can I exclude all folders (not files) named "cap" being scattered at different locations in "Configure filter" (without having to do it with each single folder)?

And how can I exclude all folders (not files) named "cap" which are located in the same path (so, they are sub folder or a sub sub folder and so on) after a folder named "Downloader"? E.g.:

I:\programs\Downloader - Copy 4\cap
or
I:\programs\Downloader - Copy 5\app\cap
Posts: 20
Joined: 6 Jul 2005

wpwoodjr

Exclude all folders (not files) named "cap"

*\cap\

Exclude all folders (not files) named "cap" which are located in the same path (so, they are sub folder or a sub sub folder and so on) after a folder named "Downloader"

*\Downloader*\cap\

*\Downloader*\*\cap\
Posts: 93
Joined: 30 Dec 2008

dirki-boy

Many thanks, WPWoodJr.

What is the difference between:

*\cap\
and
cap\


This
*\*Downloader*\*\cap\
would mean the same like
*\Downloader*\*\cap\
but there could also be characters before "Downloader" like "123Downloader" and these folders would be excluded, is it right?

Many thanks again.
Posts: 20
Joined: 6 Jul 2005

wpwoodjr

Yes. *\cap\ matches

\cap\

\downloads\cap\

etc.

cap\ only matches directories at the top level named cap
Posts: 93
Joined: 30 Dec 2008

dirki-boy

OK, thank you WPWoodJr.