浏览代码

fixed createDir : added default rights.

Nicolas Cannasse 19 年之前
父节点
当前提交
5bc26576b0
共有 1 个文件被更改,包括 1 次插入1 次删除
  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 ) {