exact:"filename" search function not returning any results

Discussion related to "Everything" 1.5 Alpha.
Post Reply
anmac1789
Posts: 623
Joined: Mon Aug 24, 2020 1:16 pm

exact:"filename" search function not returning any results

Post by anmac1789 »

When I look for a folder or filename with
exact:
no results are showing up
therube
Posts: 4879
Joined: Thu Sep 03, 2009 6:48 pm

Re: exact:"filename" search function not returning any results

Post by therube »

It is "working", but there is certainly something buggy with it.
OK, let's just say, it is buggered ;-).

exact:C: - OK
exact:C:\ - OK
exact:C:\out - OK
exact:C:\out\15a\15a - OK

now, backspace from there

exact:C:\out\15a\ - nothing
exact:C:\out\15a - OK (returns, 15a)
exact:C:\out\15a\ - OK (now OK, where a moment ago it was not)

now, backspace from there

exact:C:\out\ - nothing
exact:C:\out - OK
exact:C:\out\ - OK (now OK, where a moment ago it was not)


(suppose there is caching going on, at times...)
anmac1789
Posts: 623
Joined: Mon Aug 24, 2020 1:16 pm

Re: exact:"filename" search function not returning any results

Post by anmac1789 »

therube wrote: Wed Sep 11, 2024 5:09 pm It is "working", but there is certainly something buggy with it.
OK, let's just say, it is buggered ;-).

exact:C: - OK
exact:C:\ - OK
exact:C:\out - OK
exact:C:\out\15a\15a - OK

now, backspace from there

exact:C:\out\15a\ - nothing
exact:C:\out\15a - OK (returns, 15a)
exact:C:\out\15a\ - OK (now OK, where a moment ago it was not)

now, backspace from there

exact:C:\out\ - nothing
exact:C:\out - OK
exact:C:\out\ - OK (now OK, where a moment ago it was not)


(suppose there is caching going on, at times...)
this is so bizarre...what is going on here..it used to work perfectly in older versions of everything
void
Developer
Posts: 16428
Joined: Fri Oct 16, 2009 11:31 pm

Re: exact:"filename" search function not returning any results

Post by void »

Thank you for the issue report anmac1789 and for confirming therube,

It's caused by ignoring punctuation/ws and reusing the existing results.

I will have a fix soon.

For now, setting Tools -> Options -> Advanced -> Ignore_punctuation_type to filename and search will fix the issue.



You must specify the full path with exact: when match path is enabled.
For example: exact:c:\windows\notepad.exe
exact:path:notepad.exe will never match anything.

Use exact:name:notepad.exe to match the name only with match path enabled.
anmac1789
Posts: 623
Joined: Mon Aug 24, 2020 1:16 pm

Re: exact:"filename" search function not returning any results

Post by anmac1789 »

void wrote: Thu Sep 12, 2024 2:19 am Thank you for the issue report anmac1789 and for confirming therube,

It's caused by ignoring punctuation/ws and reusing the existing results.

I will have a fix soon.

For now, setting Tools -> Options -> Advanced -> Ignore_punctuation_type to filename and search will fix the issue.



You must specify the full path with exact: when match path is enabled.
For example: exact:c:\windows\notepad.exe
exact:path:notepad.exe will never match anything.

Use exact:name:notepad.exe to match the name only with match path enabled.
when I was searching for
exact:name:"IMG_????"
, enabling match path or disabling it, didn't really change any results.
void
Developer
Posts: 16428
Joined: Fri Oct 16, 2009 11:31 pm

Re: exact:"filename" search function not returning any results

Post by void »

name: will match the extension.

Please try the following search:

exact:stem:"IMG_????"


stem: will match the name without the extension.
Post Reply