find a file using wildcards
find a file using wildcards
If I enter CRTMR*json I get no results, but just CRTMR gives a ton of results including a file named "CRTMR_Mapping.json". but it also returns class files as well as other stuff that I don't want to see. CRTMR*json should return just files that end in json and start with CRTMR. How can I change it ?
- Attachments
-
- Screenshot 2021-10-06 153909.png (26.12 KiB) Viewed 6837 times
Re: find a file using wildcards
When you click on Search in the menu bar, Is Enable Regex enabled ? If so, disable it.
For testing purposes, make sure only Everything is enabled in the Search menu and re-try your search.
Do you see your "CRTMR_Mapping.json" among the results?
For testing purposes, make sure only Everything is enabled in the Search menu and re-try your search.
Do you see your "CRTMR_Mapping.json" among the results?
Re: find a file using wildcards
Unfortunately this didnt work. I enabled regex and disabled it and nothing changed. Unless there is something else i need to do to either rebuild the index or something.
"For testing purposes, make sure only Everything is enabled in the Search menu and re-try your search.'" --- This is how it was set before.
"For testing purposes, make sure only Everything is enabled in the Search menu and re-try your search.'" --- This is how it was set before.
Re: find a file using wildcards
Please try disabling Match Path from the Search menu.
-If Match path is enabled, Everything will try to match the whole path and filename against CRTMR*json
Or, consider searching for:
*\CRTMR*json
Or, consider matching wildcards anywhere in the filename:
Improving wildcard matching is in development.
-If Match path is enabled, Everything will try to match the whole path and filename against CRTMR*json
Or, consider searching for:
*\CRTMR*json
Or, consider matching 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.
Improving wildcard matching is in development.
Re: find a file using wildcards
I tried disabling/enabling match path and *\CRTMR*json with no luck.
I also tried Uncheck Match whole filename when using wildcards.
As for it being in development I know this used to work for me.
I also tried Uncheck Match whole filename when using wildcards.
As for it being in development I know this used to work for me.
Re: find a file using wildcards
This is what should happen.CRTMR*json should return just files that end in json and start with CRTMR
What search options are enabled under the Search menu?
What search options are enabled under Tools -> Options -> Search?
Is there anything shown in the status bar on the right?
Re: find a file using wildcards
See attachments
- Attachments
-
- Screenshot 2021-10-12 131120.png (14.71 KiB) Viewed 6345 times
-
- Screenshot 2021-10-12 131153.png (19.48 KiB) Viewed 6345 times
-
- Screenshot 2021-10-12 131218.png (1.59 KiB) Viewed 6345 times
Re: find a file using wildcards
With Regex enabled, CRTMR*json, says to find CRMT, followed by 0 or more R's, followed by json.Is Enable Regex enabled ? If so, disable it.
So CRTMjson or CRTMRjson or CRTMRRRjson or...
If you wanted to keep Regex in there, you could do CRTMR.*json, which says to find CRTMR, followed by any number of characters, followed by json (& potentially followed by anything else).
^CRTMR.*json$
Find file names that begin with CRTMR, followed by any (or no more) character(s), & ending with json.
(Match Path will affect what is returned, & for your use you're most likely going to need to disable it to get results.)
Re: find a file using wildcards
Thank you for the screenshots.
Please disable the following under the Search menu:
Disable Match Whole Word
Disable Match Path
Disable Regex.
Please enable the following under Tools -> Options -> Search:
Enable Match whole filename when using wildcards.
Does searching for CRTMR*json find the expected results now?
Please disable the following under the Search menu:
Disable Match Whole Word
Disable Match Path
Disable Regex.
Please enable the following under Tools -> Options -> Search:
Enable Match whole filename when using wildcards.
Does searching for CRTMR*json find the expected results now?
Re: find a file using wildcards
Disable Regex. That did it. THANK YOU
THANK YOU
THANK YOU
THANK YOU
THANK YOU
THANK YOU
THANK YOU