ソースを参照

Can remove path from local file system cache.

clementlandrin 1 年間 前
コミット
9fa31573fc
1 ファイル変更4 行追加0 行削除
  1. 4 0
      hxd/fs/LocalFileSystem.hx

+ 4 - 0
hxd/fs/LocalFileSystem.hx

@@ -329,6 +329,10 @@ class LocalFileSystem implements FileSystem {
 		}
 		}
 	}
 	}
 
 
+	public function removePathFromCache(path : String) {
+		fileCache.remove(path);
+	}
+
 	public function exists( path : String ) {
 	public function exists( path : String ) {
 		var f = open(path);
 		var f = open(path);
 		return f != null;
 		return f != null;