Child: searching

Discussion related to "Everything" 1.5 Alpha.
Post Reply
Phlashman
Posts: 41
Joined: Sun Sep 11, 2022 4:57 am

Child: searching

Post by Phlashman »

Using 1.5.0.1339a (x64)

In the help it states

child:<filename> Search for folders that contain a child with a matching filename.

Also in the forums for finding files with non ascii characters I found

regex:[^\x00-\x7F]

For me the regex search returns 132 files with highlighted non ascii characters. So if I wanted to find the folders that have these files
in them I tried the following:

child:regex:[^\x00-\x7F]

It returns 0 results :( why?
void
Developer
Posts: 16672
Joined: Fri Oct 16, 2009 11:31 pm

Re: Child: searching

Post by void »

Please try the following search:

regex:child:[^\x00-\x7F]

The regex: search modifier must go before the child: search function.
Phlashman
Posts: 41
Joined: Sun Sep 11, 2022 4:57 am

Re: Child: searching

Post by Phlashman »

That worked thanks. :-)

just one more thing, what is the extra needed with this search to display a column with the number of matching files in each folder?
NotNull
Posts: 5458
Joined: Wed May 24, 2017 9:22 pm

Re: Child: searching

Post by NotNull »

Code: Select all

regex:child:[^\x00-\x7F] add-column:child-occurrence-count:
child-occurrence-count:
Post Reply