Pārlūkot izejas kodu

make sure to create tmp dir

ncannasse 8 gadi atpakaļ
vecāks
revīzija
48d677ec40
1 mainītis faili ar 3 papildinājumiem un 0 dzēšanām
  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 {