Browse Source

fixed createDir : added default rights.

Nicolas Cannasse 19 years ago
parent
commit
5bc26576b0
1 changed files with 1 additions and 1 deletions
  1. 1 1
      std/neko/FileSystem.hx

+ 1 - 1
std/neko/FileSystem.hx

@@ -79,7 +79,7 @@ class FileSystem {
 	}
 
 	public static function createDir( path : String ) {
-		sys_create_dir( untyped path.__s );
+		sys_create_dir( untyped path.__s, 493 );
 	}
 
 	public static function deleteFile( path : String ) {