Home > Java > javaTutorial > body text

Java Example - Get the last modification time of a directory

黄舟
Release: 2017-02-13 10:14:48
Original
1146 people have browsed it

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()));
   }}
Copy after login

The output result of running the above code is:

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

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)!

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template