How to search for files with exact extension
I am searching in Windows 10 for *.vcxproj
in a file explorer window but it is returning files like:
- project1.vcxproj
- project1.vcxproj.user
How can I control this search more accurately?
Solution 1:
EDIT: after some testing, it seems it doesn't work anymore. But syntax "*.<extension name>" seems to be working fine. So I recommend in your case "*.vcxproj".
You can use the syntax ext:<extension name>, in your case ext:.vcxproj. :) More info here