Search on paths is case sensitive although this option is not enabled (this option only applies to the filenames)
Right, "Search" is intended to find files ...
When a word matches a part of a pathname , all file names that are in that folder will be shown.
But if the folder is empty, it won't be shown
Test in a cmd window :
Code: Select all
Dir D:\Photos /s /ad /b | find /i "washington"
will show all subfolder names of D:\photos containing Washington
Using a .bat file:
Code: Select all
@echo off
:aaa
set /p word="String to search : "
if "z%word%"=="z" goto bbb
Dir D:\Photos /s /ad /b | find /i "%word%"
goto aaa
:bbb
then you can add a new button in the toolbar, linked to this bat file ...
but in this way, we cannot mix searches with other criteria.
