SOLVED "get_save_filename" file extension case

quattj

Member
I am using get_save_filename in Windows, and it is making the file extension for my save file in all caps. I am also using get_open_filename, and again, the extension is in all caps. Is there a way to force it to use lower case for the file extension?
 

quattj

Member
Oops, never mind. My test file already had an all caps extension, and I mindlessly clicked it and added some extra text before saving. With another file with a lower case extension, it's fine. And it's fine if I manually type it as well. Bed time!
 

Tyg

Member
can also use something like fname = string_lower("MyFile.tXt") to force the string to lower case "myfile.txt" :)
 
Top