While we usually want case insensitive paths on Windows (thus convert all to lowercase), it is bad when used for example for output filenames because there will be cases where you actually want uppercase letters in it. So maybe there should be an option for path.normpath() or we need to introduce some kind of Path class that will compare case insensitive on Windows but keep the uppercase letters.
While we usually want case insensitive paths on Windows (thus convert all to lowercase), it is bad when used for example for output filenames because there will be cases where you actually want uppercase letters in it. So maybe there should be an option for
path.normpath()
or we need to introduce some kind ofPath
class that will compare case insensitive on Windows but keep the uppercase letters.