浏览代码

make sure to create tmp dir

ncannasse 8 年之前
父节点
当前提交
48d677ec40
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      hxd/fs/LocalFileSystem.hx

+ 3 - 0
hxd/fs/LocalFileSystem.hx

@@ -392,6 +392,9 @@ class LocalFileSystem implements FileSystem {
 		root = new LocalEntry(this, "root", null, baseDir);
 		#end
 		tmpDir = baseDir + ".tmp/";
+		#if sys
+		try sys.FileSystem.createDirectory(tmpDir) catch( e : Dynamic ) {};
+		#end
 	}
 
 	public function getRoot() : FileEntry {