BUG: The "Add folder" dialog is improperly case sensitive
Dear Kim,
Windows does not distinguish by case.
For example, it will not let "puppy.png" and"PUPPY.png" coexist in the same folder.
But the "Add folder" dialog's "Regular expression match" is forced case sensitive -- there is not even an option to turn it off.
This means that if I want all these files from the folders:
puppy.png, Puppy.png, PUPPY.png, puPPy.png, puppY.png, etc.
I have to use insane regex like:
(puppy|Puppy|PUPPY|puPPy|puppY| etc. etc.)\.(png|PNG| etc. etc.)
The standard Localized Inline Modifiers, like
(?i:puppy)\.(?i:png)
don't work either.
UPDATE: Finally found an inline modifier will work with only this syntax: (?i)puppy)\.png
This does not change that case-sensitive does not make sense for 99% of file adds and should not be the default.
===> Please make the "Regular expression match" case-insensitive. <===
If you are feeling extra frisky you can add a checkbox control for it.
Regards,
Randy
Windows does not distinguish by case.
For example, it will not let "puppy.png" and"PUPPY.png" coexist in the same folder.
But the "Add folder" dialog's "Regular expression match" is forced case sensitive -- there is not even an option to turn it off.
This means that if I want all these files from the folders:
puppy.png, Puppy.png, PUPPY.png, puPPy.png, puppY.png, etc.
I have to use insane regex like:
(puppy|Puppy|PUPPY|puPPy|puppY| etc. etc.)\.(png|PNG| etc. etc.)
The standard Localized Inline Modifiers, like
(?i:puppy)\.(?i:png)
don't work either.
UPDATE: Finally found an inline modifier will work with only this syntax: (?i)puppy)\.png
This does not change that case-sensitive does not make sense for 99% of file adds and should not be the default.
===> Please make the "Regular expression match" case-insensitive. <===
If you are feeling extra frisky you can add a checkbox control for it.
Regards,
Randy