提交 848c4a28 authored 作者: Thomas Mueller's avatar Thomas Mueller

The in-memory file system "memFS:" now has limitted support for directories.

上级 76021805
......@@ -87,6 +87,7 @@ public class FileSystemMemory extends FileSystem {
}
public String[] listFiles(String path) {
path = getCanonicalPath(path);
ArrayList<String> list = New.arrayList();
synchronized (MEMORY_FILES) {
for (String name : MEMORY_FILES.tailMap(path).keySet()) {
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论