With this lines I'm get a list with all files under but also the current directory
List<FileObject> fileList = new ArrayList<FileObject>();
FileObject fileObject = ...
fileObject.findFiles(new AllFileSelector(), depthwise, fileList);
the list content it:
/foo/boo/bla.jpg
/foo/tal.jpg
/foo/cheese.jpg
/foo
and I want to get just this:
/foo/boo/bla.jpg
/foo/tal.jpg
/foo/cheese.jpg
have I set something in the selector?
thanks