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
Exclude all folders named "cap"?
- Posts: 93
- Joined: 30 Dec 2008
- Posts: 20
- Joined: 6 Jul 2005
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\
*\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
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.
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
Yes. *\cap\ matches
\cap\
\downloads\cap\
etc.
cap\ only matches directories at the top level named cap
\cap\
\downloads\cap\
etc.
cap\ only matches directories at the top level named cap
- Posts: 93
- Joined: 30 Dec 2008
OK, thank you WPWoodJr.