Does anybody have a snippet of Java that can return the newest file in a directory (or knowledge of a library that simplifies this sort of thing)?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
This returns the last modified:
|
|||
|
|
|
This works perfectly for me:
|
||||
|
|
|
Take a look at this question: Best way to list files in Java, sorted by Date Modified? Also listed in there is the Apache Commons IO package. That has LastModifiedFileComparator. |
|||
|
|
|
@Oscar's example can be simplified for Java 5:
|
|||
|
|
|
Something like:
|
|||||||||
|