how do i exclude folders from my search?
how do i exclude folders from my search?
i'd like to exclude a folder or a parent folder. how do i do so?
Re: how do i exclude folders from my search?
Please try the NOT operator: !
For example, to exclude: C:\Windows from your results:
!C:\Windows\
To exclude C:\Program files from your results:
!"c:\program files\"
Note the double quotes to escape spaces.
For example, to exclude: C:\Windows from your results:
!C:\Windows\
To exclude C:\Program files from your results:
!"c:\program files\"
Note the double quotes to escape spaces.
-
- Posts: 17
- Joined: Mon Sep 21, 2015 8:32 pm
Re: how do i exclude folders from my search?
I wanted to find files with "hepm" in the name,but not in the folder FileHistory. So I typed "hepm !G:\FileHistory". This found nothing. "hepm" by itself found all the files with "hepm" in the name, as expected. So exactly how does one use the NOT operator?
Re: how do i exclude folders from my search?
Code: Select all
hepm !"G:\FleHistory\"
-
- Posts: 17
- Joined: Mon Sep 21, 2015 8:32 pm
Re: how do i exclude folders from my search?
Thanks, but this also finds nothing.
Re: how do i exclude folders from my search?
Please try the following search:
hepm !g:\filehistory\
-If the folder is different to the above and contains a space, please escape the space with double quotes:
For example:
hepm !"g:\file history\"
Please make sure regex is uncheck under the Search menu.
hepm !g:\filehistory\
-If the folder is different to the above and contains a space, please escape the space with double quotes:
For example:
hepm !"g:\file history\"
Please make sure regex is uncheck under the Search menu.
-
- Posts: 17
- Joined: Mon Sep 21, 2015 8:32 pm
Re: how do i exclude folders from my search?
Many thanks. It seems to be working now.