java中有没有办法在linux上访问文件的更改时间属性?
我尝试使用java.io.File.lastModified()方法,但此方法仅返回文件的修改时间属性。
我想要做的是检测上传文件到linux服务器的时间。我注意到modify time属性在我的本地机器上有文件修改的时间戳,但是,更改时间属性是上传到linux服务器的时间。
感谢您的任何建议。
答案 0 :(得分:0)
您可以使用以下方法获取文件的更改时间。
Files.getAttribute(new File("<path to a file>").toPath(),"unix:ctime")
这是示例代码:
import java.util.*;
import java.io.*;
import java.nio.file.*;
import java.nio.file.attribute.*;
public class Test{
public static void main(String[] args){
try
{
System.out.println(Files.getAttribute(new File("b").toPath(),"unix:ctime"));
System.out.println(new Date(((FileTime)Files.getAttribute(new File("b").toPath(),"unix:ctime")).toMillis()));
}
catch (Exception e)
{
e.printStackTrace();
}
}
}
When running `LANG=en_us.UTF-8 stat b` on the console, the output is:
File: 'b'
Size: 0 Blocks: 0 IO Block: 4096 regular empty file
Device: fd00h/64768d Inode: 101210225 Links: 1
Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root)
Context: unconfined_u:object_r:admin_home_t:s0
Access: 2018-06-26 10:16:18.649378326 +0800
Modify: 2018-06-26 10:16:18.649378326 +0800
Change: 2018-06-26 10:17:06.009384678 +0800
Birth: -
Running the example code with the `Test` class provides the following output:
{ctime=2018-06-26T02:17:06.009384Z}
As you may see it changed the change time hour from `10` to `02`.