w3resource

Java: Get last modified time of a file


Write a Java program to determine the last modified date of a file.

Sample Solution:

Java Code:

import java.io.File;
import java.util.Date;

public class Example7 {
       public static void main(String[] args) {
       File file = new File("test.txt");
       Date date=new Date(file.lastModified());
	   System.out.println("\nThe file was last modified on: "+date+"\n");	   
     }
}

Sample Output:

The file was last modified on: Thu Jan 01 05:30:00 IST 1970

Flowchart:

Flowchart: Get last modified time of a file


For more Practice: Solve these Related Problems:

  • Write a Java program to fetch the last modified date of a file and format it in a custom date format.
  • Write a Java program to compare the last modified timestamps of two files and determine which one is newer.
  • Write a Java program to list files in a directory along with their last modified dates in descending order.
  • Write a Java program to monitor a file for changes by periodically checking its last modified date.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to compare two files lexicographically.
Next: Write Java program to read input from java console.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.