使用touch命令加参数m时,不是只改变mtime吗?怎么连ctime也一起改变了?谢谢各位高手予以解答。
1 回答
慕的地8271018
TA贡献1796条经验 获得超4个赞
按照man文档的解释的三种时间: st_atime
Time when file data was last accessed. Changed by the
following functions: creat(), mknod(), pipe(),
utime(2), and read(2).
st_mtime
Time when data was last modified. Changed by the fol-
lowing functions: creat(), mknod(), pipe(), utime(),
and write(2).
st_ctime
Time when file status was last changed. Changed by the
following functions: chmod(), chown(), creat(),
link(2), mknod(), pipe(), unlink(2), utime(), and
write().实际使用中touch确实会改变mtiem和ctime,我的理解是透彻修改mtime的方式是通过修改文件能容,保存,然后还原文件内容再保存,因此mtime和ctime都会改变。
希望对你有帮助!!
- 1 回答
- 0 关注
- 143 浏览
添加回答
举报
0/150
提交
取消