Get file last modified time for a path object by using Files class : Files « JDK 7 « Java
- Java
- JDK 7
- Files
Get file last modified time for a path object by using Files class
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
public class Test {
public static void main(String[] args) throws Exception {
Path zip = Paths.get("/usr/bin/zip");
System.out.println(Files.getLastModifiedTime(zip));
}
}
Related examples in the same category