When using:
Limit the search to a single folder:
c:\windows\ !c:\windows\*\*
Is there a way to return multiple unique items from that folder without repeat the whole expression.
Example:
To return the folders: "Fonts", "Assembly" and "Resources" from "c:\windows\" I could use the following expression.
c:\windows\ !c:\windows\*\* Fonts |c:\windows\ !c:\windows\*\* Assembly| c:\windows\ !c:\windows\*\* Resources
Is there a more efficient way to do this.
Thank You
Limit the search to a single folder:
Re: Limit the search to a single folder:
Never mind. I got it
c:\windows\ !c:\windows\*\* <Fonts |Resources| Assembly>
Thankyou
c:\windows\ !c:\windows\*\* <Fonts |Resources| Assembly>
Thankyou
Re: Limit the search to a single folder:
Perhaps something like:
If all you wanted were folder names, you could use something like:
Code: Select all
parents:3 c:/windows <fonts | temp | assembly> {term}
Code: Select all
child: parents:2 c:/windows <fonts | temp | cursors>
Re: Limit the search to a single folder:
Thank you for responding.
neither of these examples does anything.
I just copies and pasted the examples into the search box in everything
There must be something more to this that I am not aware of.
Regards
neither of these examples does anything.
I just copies and pasted the examples into the search box in everything
There must be something more to this that I am not aware of.
Regards
therube wrote:Perhaps something like:
If all you wanted were folder names, you could use something like:Code: Select all
parents:3 c:/windows <fonts | temp | assembly> {term}
Code: Select all
child: parents:2 c:/windows <fonts | temp | cursors>