Search, case sensitive in pathname

Ask for help and post your question on how to use XnView MP.

Moderators: helmut, XnTriq, xnview

Post Reply
User avatar
michel038
XnThusiast
Posts: 1468
Joined: Tue Sep 27, 2016 8:18 am
Location: France
Contact:

Search, case sensitive in pathname

Post 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
User avatar
xnview
Author of XnView
Posts: 46257
Joined: Mon Oct 13, 2003 7:31 am
Location: France
Contact:

Re: Search, case sensitive in pathname

Post by xnview »

'case sensitive' is only for filename field
Pierre.
User avatar
michel038
XnThusiast
Posts: 1468
Joined: Tue Sep 27, 2016 8:18 am
Location: France
Contact:

Re: Search, case sensitive in pathname

Post 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 ...
Post Reply