I'm looking for all instances of the word 'dryer'
I'm attempting to exclude all paths containing the characters 'OneDrive'
I have created a filter
Exclude OneDrive !*\OneDrive*
It doesn't work.
My second filter
Exclude OneDrive (regex) regex:^(?!.*OneDrive).*
doesn't work either.
Any ideas?
thanks
_Excluding all paths containing specific text from search result
Re: _Excluding all paths containing specific text from search result
Please change your exclude filter search to:
Using a \ will force Everything to match the full path and name.
Alternative searches:
path: == match path and name
ww: == match whole words
!\OneDrive\Using a \ will force Everything to match the full path and name.
Alternative searches:
!path:OneDrivepath: == match path and name
!ww:path:OneDriveww: == match whole words