I want to get a list of files in a directory, but I want to sort it such that the oldest files are first. My solution was to call File.listFiles and just resort the list based on File.lastModified, but I was wondering if there was a better way.

Edit: My current solution, as suggested, is to use an anonymous Comparator:

File[] files = directory.listFiles();

Arrays.sort(files, new Comparator<File>(){
    public int compare(File f1, File f2)
    {
        return Long.valueOf(f1.lastModified()).compareTo(f2.lastModified());
    } });
link|improve this question

what's with the "new long" part of this? why don't you just compare the longs themselves? that would avoid you creating tons of longs just to get to the compareTo method... – John Gardner Oct 14 '08 at 23:42
This code don't compiles. compare methods expect that the return is a int instead of a Long. – marcospereira Oct 15 '08 at 3:40
I chose this form because it is less verbose ; it's a choice between a one-liner and a 6-liner. You're right that new'ing up all these Longs could be an issue. What about using Long.valueOf, so Java at least has a chance to cache frequent values? – cwick Oct 15 '08 at 15:46
It's very short, easy to understand and workable code! Thanks! Catch vote up! – XXX Jan 12 at 14:55
feedback

4 Answers

up vote 20 down vote accepted

I think your solution is the only sensible way. The only way to get the list of files is to use File.listFiles() and the documentation states that this makes no guarantees about the order of the files returned. Therefore you need to write a Comparator that uses File.lastModified() and pass this, along with the array of files, to Arrays.sort().

link|improve this answer
How do I fix the formatting here? Looks fine in the preview but the 4th link is screwed. – Dan Dyer Oct 14 '08 at 22:17
feedback

You might also look at apache commons IO, it has a built in last modified comparator and many other nice utilities for working with files.

link|improve this answer
feedback

This might be faster if you have many files. This uses the decorate-sort-undecorate pattern so that the last-modified date of each file is fetched only once rather than every time the sort algorithm compares two files. This potentially reduces the number of I/O calls from O(n log n) to O(n).

It's more code, though, so this should only be used if you're mainly concerned with speed and it is measurably faster in practice (which I haven't checked).

class Pair implements Comparable {
    public long t;
    public File f;

    public Pair(File file) {
        f = file;
        t = file.lastModified();
    }

    public int compareTo(Object o) {
        long u = ((Pair) o).t;
        return t < u ? -1 : t == u ? 0 : 1;
    }
};

// Obtain the array of (file, timestamp) pairs.
File[] files = directory.listFiles();
Pair[] pairs = new Pair[files.length];
for (int i = 0; i < files.length; i++)
    pairs[i] = new Pair(files[i]);

// Sort them by timestamp.
Arrays.sort(pairs);

// Take the sorted pairs and extract only the file part, discarding the timestamp.
for (int i = 0; i < files.length; i++)
    files[i] = pairs[i].f;
link|improve this answer
feedback
public String[] getDirectoryList(String path) {
    String[] dirListing = null;
    File dir = new File(path);
    dirListing = dir.list();

    Arrays.sort(dirListing, 0, dirListing.length);
    return dirListing;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.