Q:

Java program to get the last modification date and time of a file

belongs to collection: Java File Handling Programs

0

Given a file name and we have to find its last modification date using java program.

To implement this program, we are using "File" class, and its method "lastModified()" which returns file’s last modification date and time.

Here, we are passing (giving) a file named "IncludeHelp.txt' which is stored in "E:" drive in my system; you can pass any file name with correct path which must be available in your system.

 

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Consider the program

// This program will display date and time 
// of last modification of the file IncludeHelp.txt

import java.io.*;
import java.util.Date;

public class LastModify {
  public static void main(String[] args)

  {
    // Enter the file name here.
    File file = new File("E:/IncludeHelp.txt");

    // lastModified is the predefined function of date class in java.
    long lastModified = file.lastModified();

    // will print when the file last modified.
    System.out.println("File was last modified at : " + new Date(lastModified));
  }
}

Output

File was last modified at : Sun Oct 15 23:23:34 IST 2017

 

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Java File Handling Programs

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
Java program to append text/string in a file... >>
<< Java program to copy files...