CreateFile on Linux

BlitzMax Forums/BlitzMax Beginners Area/CreateFile on Linux

Does anyone else have a problem with this?

CreateDir ("Chainsaw/Area/EData")
CreateFile("Chainsaw/Area/Edata/Hello.txt")

CreateDir works, but CreateFile fails to do anything and produces no error messages

This works faultlessly in Windows

No, I'm not running the same code files thats on my Windows partition, I copied everything into Linux first

The Linux file system is case sensitive, Windows is not. In the second line, replace "Edata" with "EData".