Page 1 of 1
					
				Search, case sensitive in pathname
				Posted: Wed Apr 29, 2020 9:09 pm
				by michel038
				V0.96.1
The new function "Search, Pathname"  doesn't use the option "case sensitive"
Even if it is unmarked, search is still case sensitive
			 
			
					
				Re: Search, case sensitive in pathname
				Posted: Fri Jul 24, 2020 9:14 am
				by xnview
				'case sensitive' is only for filename field
			 
			
					
				Re: Search, case sensitive in pathname
				Posted: Tue Dec 22, 2020 4:24 pm
				by michel038
				quel dommage ... what a pity ...
(heavy) workaround :
Create a Dos batch to enter all paths in a text file (dir/s |find "DIR" > dirlist.txt )   ( french  : dir/s |find "REP" > dirlist.txt )
use this  batch when needed to update directory list
Create a Dos batch to search for criterias in this text file 
Code: Select all
@echo off
:start
set /p word= Enter a word : 
if z%word%==zq goto end1
cls
find /i  "%word%"  "c:\tool\test\dirlist.txt" | find /v "dirlist.txt"
goto start
:end1
and create a new button in the toolbar, pointing to this batch file ...