search for paths only and with wildcards [solved]

Discussion related to "Everything" 1.5 Alpha.
Post Reply
itge13
Posts: 4
Joined: Sun Apr 25, 2021 12:22 pm

search for paths only and with wildcards [solved]

Post by itge13 »

hello I want to find files which have "services" in its name and are in a folder containing "logs" in its name. no other details are known. How can I achieve this?

the file I am looking for is e.g.: C:\!logs\zServicesX.txt1

doesnt work:
match path option or path: shows also FILES with "logs"
\logs or \*logs or \?logs: first shows only ones starting with L the other two show nothing

proposal:
- maybe is it possible to add functionality if "file:/folder:" thingies are not empty i.e. that "file:xyz folder:zzz" looks for filenames containing xyz and folders zzz and file: alone with a space showing only files?
- add wildcard to path: and/or "\"
Last edited by itge13 on Tue Jul 19, 2022 4:28 am, edited 1 time in total.
itge13
Posts: 4
Joined: Sun Apr 25, 2021 12:22 pm

Re: search for paths only and with wildcards

Post by itge13 »

ok "pp:" seems to be the solution. didn't find it before, the link doesnt work: viewtopic.php?f=12&t=10176&p=37763#pp.
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: search for paths only and with wildcards [solved]

Post by void »

Using a wildcard will force Everything to match the entire filename/path.

Please try:

**logs**\*services*

This matches logs anywhere in the path part and services anywhere in the name part.



To match wildcards anywhere in the filename:
  • In Everything, from the Tools menu, click Options.
  • Click the Search tab on the left.
  • Uncheck Match whole filename when using wildcards.
  • Click OK.
With Match whole filename when using wildcards disabled, search for:

logs**\*services



For others, to search only the path part, please try the following search:

pp:logs services

pp:



The following will find files/folders directly in a folder starting with logs:
logs*\*

The following will find files/folders containing services directly in a folder starting with logs:
logs*\* services

The following will find files/folders containing services directly in a folder containing logs:
parentname:logs services

The following will find files/folders containing services directly in a folder containing logs:
**logs*\* services



Wildcards in Everything 1.5
parentname:



I have fix the pp: link, thanks for letting me know it was broken.
Post Reply