瀏覽代碼

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 ) {
 		var f = open(path);
 		return f != null;