I\'m making a basic file browser and want to get the last modified date of each file in a directory. How might I do this? I already have the name and type of each file (all
As in the javadocs for java.io.File:
new File("/path/to/file").lastModified()