I looked around and I couldn't find anything explaining this..
This is the code i'm using:
PHP Code:
this.filePath = "logs/Projects/workboard/";
temp.lines = new TStaticVar();
temp.lines.variable = "Hello";
temp.lines.secondvariable = "World";
temp.lines.saveVars(this.filePath@"testProject.txt", 0);
temp.loadVariables.loadvars(this.filePath@"testProject.txt");
echo("Variables:"@temp.loadVariables.secondvariable);
The problem is I can't read and write to visible files in the folder, but I can create and read from invisible files in the folder. Does anyone have any clue why this is the case?
Thanks