How do I find the last modified file in a directory in java?
|
You could use a |
|||||||||||||
|
|
Combine these two:
Note that in Java the |
|||
|
|
|
You can retrieve the time of the last modification using the File.lastModified() method. My suggested solution would be to implement a custom Comparator that sorts in lastModified()-order and insert all the Files in the directory in a TreeSet that sorts using this comparator. Untested example:
The solution suggested by Bozho is probably faster if you only need the last file. On the other hand, this might be useful if you need to do something more complicated. |
|||
|
|
|
Your problem is similar to: How to get only 10 last modified files from directory using Java? Just change the filter code to have only one File and the accept method should simply compare the two time stamps. Untested code:
Now, call dir.listFiles with an instance of this filter as argument. At the end, the filter.topFile is the last modified file. |
|||
|
|
|
The comparator in Emil's solution would be cleaner this way
Casting |
|||
|
|
Works perfectly for me |
||||
|
|