Home  >  Article  >  Java  >  Java Example - Get the last modification time of a directory

Java Example - Get the last modification time of a directory

黄舟
黄舟Original
2017-02-13 10:14:481105browse

The following example demonstrates using the file.lastModified() method of the File class to obtain the last modified time of the directory:

/*
 author by w3cschool.cc
 Main.java
 */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("最后修改时间:" + 
      new Date(file.lastModified()));
   }}

The output result of running the above code is:

最后修改时间:Fri Apr 10 11:09:19 CST 2015

The above is the Java example - Get the content of the last modification time of the directory. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn