You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not sure why, but when renaming files with perfectly fine filenames (TEST.TTF into test.ttf) produces correct results if it wasn't for a _1 appended after each filename (test_1.ttf).
The text was updated successfully, but these errors were encountered:
That seems to be because it's checking if there is already a file with the new name to avoid overwriting, and that check is case-insensitive.
This would be fixable though by checking if it's the same name, just in a different case.
I find myself editing filenames to uppercase/lowercase often, so this change would at least to me be quite nice. For now what works is doing it in two steps, first do what I need and then re-batch rename to remove the _1
I'm not sure why, but when renaming files with perfectly fine filenames (
TEST.TTF
intotest.ttf
) produces correct results if it wasn't for a_1
appended after each filename (test_1.ttf
).The text was updated successfully, but these errors were encountered: