有了这些行,我得到了一个列表,其中包含所有文件以及当前目录
List<FileObject> fileList = new ArrayList<FileObject>();
FileObject fileObject = ...
fileObject.findFiles(new AllFileSelector(), depthwise, fileList);
列表内容:
/foo/boo/bla.jpg
/foo/tal.jpg
/foo/cheese.jpg
/foo
我想得到这个:
/foo/boo/bla.jpg
/foo/tal.jpg
/foo/cheese.jpg
我在选择器中设置了什么?
谢谢