Hello,
On my main drive C: I want to find all paths that contain:
tmp
temp
and at the same time, not having any of these in any of the paths:
template
templates
With the following, I still see some paths containing the word template
C: path:<tmp|temp> !path:<template*>
And the following is probably just a wrong way to do things?
(plus it appears that the following does not show any paths with tmp or temp either)
C: path:<tmp|temp|!template*>
Thanks for any help and techniques to try.