是否有任何命令以纳秒为单位显示 Apple 文件系统 (APFS) 时间戳?
Are there any commands showing Apple File System (APFS) timestamps in nanoseconds?
听说timestamps in APFS are in nanoseconds。
是否有任何命令能够以纳秒为单位显示 APFS 时间戳?
我试过 ls
、stat
,但到目前为止没有成功。
没有命令,但您可以创建一个简单的 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);
}
请求浮点输出可以获得纳秒时间戳:
% stat -f %Fm foo
1609297230.485880489
听说timestamps in APFS are in nanoseconds。
是否有任何命令能够以纳秒为单位显示 APFS 时间戳?
我试过 ls
、stat
,但到目前为止没有成功。
没有命令,但您可以创建一个简单的 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);
}
请求浮点输出可以获得纳秒时间戳:
% stat -f %Fm foo
1609297230.485880489