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