快捷搜索:   nginx

Linux系统中atime ctime mtime之间区别

    文件的 Access time,atime 是在读取文件或者执行文件时更改的。

    文件的 Modified time,mtime 是在写入文件时随文件内容的更改而更改的。

    文件的 Create time,ctime 是在写入文件、更改所有者、权限或链接设置时随 Inode 的内容更改而更改的。

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

    ls(1) 命令可用来列出文件的 atime、ctime 和 mtime.

    ls -lc filename 列出文件的 ctime

    ls -lu filename 列出文件的 atime

    ls -l filename 列出文件的 mtime

顶(0)
踩(0)

您可能还会对下面的文章感兴趣:

最新评论