Linux atime, ctime and mtime

一个*nix文件至少包含了以下几个文件属性:atime, ctime和mtime


atime: access time,直译过来就是访问时间,是指这个文件最后一次被访问的时间,想要查看这个时间,可以使用以下命令来查看一个文件的atime

[plain]  view plain copy
  1. ls -l --time=atime filename  

mtime: modification time , 是指一个文件的内容上次被修改的时间,ls命令的-l选项默认显示的就是mtime


ctime: change time, 是指一个文件上次被改变的时间,这里的改变是指文件的一些属性,例如访问权限、文件名等,可以使用来查看一个文件的ctime

[plain]  view plain copy
  1. ls -l --time=ctime filename  

你可能感兴趣的:(Linux atime, ctime and mtime)