我能够做到这一点:
File images = new File(path);
File[] imageList = images.listFiles(new FilenameFilter(){
public boolean accept(File dir, String name)
{
return name.endsWith(".jpg");
}
});
我从stackoverflow的答案中复制了!
有没有办法列出文件好的“目录”(文件夹)并按字母倒序列出?......并通过相反的日期?