6

我听说APFS 中的时间戳以纳秒为单位

是否有任何命令能够以纳秒为单位显示 APFS 时间戳?

我试过了lsstat但到目前为止还没有运气。

4

2 回答 2

3

您可以通过请求浮点输出来获得纳秒时间戳:

% stat -f %Fm foo
1609297230.485880489
于 2020-12-30T04:10:16.990 回答
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);
}
于 2018-08-21T06:46:16.243 回答