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
Search, case sensitive in pathname
Search, case sensitive in pathname
Tutoriel métadonnées XnviewMP : https://orchisere.pagesperso-orange.fr/ ... viewmp.htm
Tutoriel exiftool : https://orchisere.pagesperso-orange.fr/ ... iftool.htm
Tutoriel exiftool : https://orchisere.pagesperso-orange.fr/ ... iftool.htm
Re: Search, case sensitive in pathname
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
and create a new button in the toolbar, pointing to this batch file ...
(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
Tutoriel métadonnées XnviewMP : https://orchisere.pagesperso-orange.fr/ ... viewmp.htm
Tutoriel exiftool : https://orchisere.pagesperso-orange.fr/ ... iftool.htm
Tutoriel exiftool : https://orchisere.pagesperso-orange.fr/ ... iftool.htm