How do I search for an extension with a matched or only partially matched path?

General discussion related to "Everything".
Post Reply
Debugger
Posts: 565
Joined: Thu Jan 26, 2017 11:56 am

How do I search for an extension with a matched or only partially matched path?

Post by Debugger »

How do I search for an extension with a matched or only partially matched path?

Example:

Code: Select all

*.part [E-Z]:\\
(all)

Code: Select all

*.part [E-Z]:\\mimi
(partially match)
void
Developer
Posts: 15096
Joined: Fri Oct 16, 2009 11:31 pm

Re: How do I search for an extension with a matched or only partially matched path?

Post by void »

Please try:
*.part regex:[E-Z]:\\mimi
Post Reply