标签: java file
可能重复: How to discover a File's creation time with Java?
我想在java中获取文件的创建日期和时间。 我该怎么办?
提前致谢!!!!
答案 0 :(得分:2)
How to get the file creation date in Java
答案 1 :(得分:1)
您有 cmd / c dir fileName 命令执行此操作:
尝试使用
Runtime runtime = Runtime.getRuntime(); Process output = runtime.exec("cmd /c dir "+fname);
处理运行时的输出并获得所需的标记。