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
Moderators: helmut, XnTriq, xnview
Search, case sensitive in pathname
Catalogage avec XnviewMP :
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.htm
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.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
Catalogage avec XnviewMP :
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.htm
https://orchisere.fr/logiciels/html/xnviewmpintro.htm
Tutoriel exiftool : https://orchisere.fr/logiciels/html/exiftool.htm