I'm attempting to search part of a filename in windows explorer, but unless the part of the name I search for is at the very beginning or is separated by spaces or underscores, it fails to match. Par exemple, a nom de fichierd HelloWorld.java will match a search of `hello`, but not `world`. `*world` fails aussi.
Existe-t-il un native solution to this?
Recherche partial fichiernames in windows explorer
Re: Recherche partial fichiernames in windows explorer
Using this keyword and searching for "world": `name:~=world` will do the trick.
For more advanced search tips:
- [A guide to using Windows Search](https://answers.microsoft.com/en-us/windows/forum/windows_7-files/a-guide-to-using-windows-search-two-alternatives/b0f4229d-623a-46dd-a84e-94e666bbe505)
- [Advanced Query Syntax](https://msdn.microsoft.com/en-us/library/windows/desktop/aa965711(v=vs.85).aspx)
For more advanced search tips:
- [A guide to using Windows Search](https://answers.microsoft.com/en-us/windows/forum/windows_7-files/a-guide-to-using-windows-search-two-alternatives/b0f4229d-623a-46dd-a84e-94e666bbe505)
- [Advanced Query Syntax](https://msdn.microsoft.com/en-us/library/windows/desktop/aa965711(v=vs.85).aspx)