vote up 5 vote down star
1

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());
    } });
flag

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

2 Answers

vote up 7 vote down check

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()][4].

[4]: http://java.sun.com/javase/6/docs/api/java/util/Arrays.html#sort(T[], java.util.Comparator)

link|flag
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
vote up 2 vote down

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|flag

Your Answer

Get an OpenID
or

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