Tutorials Point


  Java Basics Examples
  Java Tutorial
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java Examples - Directory Modification Time


previous next AddThis Social Bookmark Button


Problem Description:

How to print the last modification time of a directory?

Solution:

Following example demonstrates how to get the last modification time of a directory with the help of file.lastModified() method of File class.

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

public class Main {
   public static void main(String[] args) {
      File file = new File("C://FileIO//demo.txt");
      System.out.println("last modifed:" + 
      new Date(file.lastModified()));
   }
}

Result:

The above code sample will produce the following result.

last modifed:10:20:54


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names