Mtime,ctime,atime
159.226.169.140(讨论)2012年4月7日 (六) 12:36的版本 (以“*文件的 Access time,atime 是在读取文件或者执行文件时更改的。 *文件的 Modified time,mtime 是在写入文件时随文件内容的更改而...”为内容创建页面)
- 文件的 Access time,atime 是在读取文件或者执行文件时更改的。
- 文件的 Modified time,mtime 是在写入文件时随文件内容的更改而更改的。
- 文件的 Create time,ctime 是在写入文件、更改所有者、权限或链接设置时随 Inode 的内容更改而更改的。
因此,更改文件的内容即会更改 mtime 和 ctime,但是文件的 ctime 可能会在 mtime 未发生任何变化时更改 - 在权限更改,但是文件内容没有变化的情况下。
ls 命令可用来列出文件的 atime、ctime 和 mtime。
- ls -lc filename 列出文件的 ctime
- ls -lu filename 列出文件的 atime
- ls -l filename 列出文件的 mtime