我听说APFS 中的时间戳以纳秒为单位。
是否有任何命令能够以纳秒为单位显示 APFS 时间戳?
我试过了ls
,stat
但到目前为止还没有运气。
您可以通过请求浮点输出来获得纳秒时间戳:
% stat -f %Fm foo
1609297230.485880489
没有命令,但您可以创建一个简单的 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);
}