答案 0 :(得分:2)
您可以通过请求浮点输出来获得纳秒时间戳:
% stat -f %Fm foo
1609297230.485880489
答案 1 :(得分:0)
没有命令,但是您可以创建一个简单的C程序对其进行测试:
#include <stdio.h>
#include <sys/stat.h>
int main() {
struct stat attr;
stat("/path/to/file", &attr);
printf("Last modified time: %ld", (long)attr.st_mtimespec.tv_nsec);
}