CreateFile on Linux

BlitzMax Forums/BlitzMax Beginners Area/CreateFile on Linux

Mordax_Praetorian(Posted 2008) [#1]
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


Koriolis(Posted 2008) [#2]
The Linux file system is case sensitive, Windows is not. In the second line, replace "Edata" with "EData".