- 主题:修改文件的创建日期要用哪个 API?
什么叫创建日期?
【 在 hgoldfish (老鱼) 的大作中提到: 】
: utimensat() 只能修改 modified 和 access 两个时间,不能修改创建时间。
: 想在备份的时候把创建日期也备份起来。
: 顺便问一下,utimensat() 的参数是结构体 struct timespec,其中的 tv_nsec 字段转换秒小数点后面的数字吗?
: ...................
--
FROM 113.108.77.*
ctime是change time吧,不是create time
【 在 hgoldfish (老鱼) 的大作中提到: 】
: 文件有创建日期、修改日期和最后访问日期三个时间戳。
--
FROM 113.108.77.*
btime怎么显示?
【 在 gameplayer 的大作中提到: 】
: ctime是change time, creation是btime,man statx或者man inode:
: /* The following fields are file timestamps */
: struct statx_timestamp stx_atime; /* Last access */
: ...................
--
FROM 113.108.77.*
哦,birth啊
【 在 gameplayer 的大作中提到: 】
: stat可以显示,看Birth那一行, 或者stat -c %w xxx
--
FROM 27.38.203.*