To get file last modification date we can use the lastModified()
method of the File
class. This method returns a long
value. After getting this value you can create an instance of java.util.Date
class and pass this value as the parameter. This Date
will hold the file’s last modification date.
package org.kodejava.io;
import java.io.File;
import java.util.Date;
public class FileLastModificationDate {
public static void main(String[] args) {
// Create an instance of file object.
File file = new File("README.md");
if (file.exists()) {
// Get the last modification information.
long lastModified = file.lastModified();
// Create a new date object and pass last modified
// information to the date object.
Date date = new Date(lastModified);
// We know when the last time the file was modified.
System.out.println(date);
}
}
}
Latest posts by Wayan (see all)
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023
- How do I export MySQL database schema into markdown format? - January 10, 2023