Linux之ctime atime mtime区分


ctime  是change time
atime  是access time
mtime  是modified time


更改文件的内容即会更改 mtime 和 ctime,但是文件的 ctime 可能会在 mtime 未发生任何变化时更改 �C 在权限更改,但是文件内容没有变化的情况下。


ls -lc  filename    列出文件的 ctime
ls -lu  filename    列出文件的 atime
ls -l   filename    列出文件的 mtime


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