Trying to filter search results for .cpp files
.cpp !C:\Users\Me\Desktop\Windows-classic-samples-master dc:>=5/11/2016
Managed to get rid of fat desktop project
but whatever I do, cant get rid of any paths with "Program Files"-part of path
g:\Program Files...
c:\Program Files (86)..
d:\backup\some Program Files...
HOW TO NOT search fragment of folder name with space inside? If you can please don't use regex.
!"Program Files" not working, and many combinations I tried.
PLEASE HELP!
Thank you.
Solved: How not search in Program Files
-
- Posts: 3
- Joined: Mon Nov 05, 2018 11:43 am
Solved: How not search in Program Files
Last edited by westpoint2 on Tue Nov 06, 2018 3:07 pm, edited 1 time in total.
-
- Posts: 3
- Joined: Mon Nov 05, 2018 11:43 am
Re: How not search in Program Files
Managed to filter out Program Files with !"\program files"
but it has first backslash and I cant filter out - "just in case"
with !"just in case" without using backslashes
J:\Big_8 2018 just in case\..long path after it
SO THE PROBLEM stays actual - How to filter out inside-path combination with SPACE,SPACES in between. AND not using backslashes.
but it has first backslash and I cant filter out - "just in case"
with !"just in case" without using backslashes
J:\Big_8 2018 just in case\..long path after it
SO THE PROBLEM stays actual - How to filter out inside-path combination with SPACE,SPACES in between. AND not using backslashes.
Re: How not search in Program Files
Try,
!path:"just in case"
Or,
Search (menu) | Match Path
!path:"just in case"
Or,
Search (menu) | Match Path
-
- Posts: 3
- Joined: Mon Nov 05, 2018 11:43 am
Solved: How not search in Program Files
Thank you therube for quick reply, you were very helpful
and SOLVED my problem, I wouldn't deduct right option by myself.
Great community. Very pleased!
and SOLVED my problem, I wouldn't deduct right option by myself.
Great community. Very pleased!
Re: Solved: How not search in Program Files
Adding to @therube's solutions and ignoring:
(when Everything sees a "\" it will assume that you want to search the path)
!"*\*just in case*\*" will exclude all folders with "just in case" somewhere in it's path.westpoint2 wrote: ↑Mon Nov 05, 2018 12:23 pm How to filter out inside-path combination with SPACE,SPACES in between. AND not using backslashes.
(when Everything sees a "\" it will assume that you want to search the path)