Inode中有三个时间:atime,mtime,ctime,分别为访问时间(access time),修改时间(modify time),改变时间(change time)。
1、查看三个时间
通过stat命令可以查看这三个时间,还可以通过ls命令来查看。
[root@localhost ~]# ll -u file1/f1
-rw-r--r-- 1 root root 4 Feb 19 17:07 file1/f1
#查看atime
[root@localhost ~]# ll file1/f1
-rw-r--r-- 1 root root 4 Feb 19 17:07 file1/f1
#查看mtime,故ll命令默认查看的是mtime
[root@localhost ~]# ll -c file1/f1
-rw-r--r-- 1 root root 4 Feb 19 17:07 file1/f1
#查看ctime
2、文件的三个时间的含义
名称 |
含义 |
atime |
最近一次访问文件的时间 |
mtime |
最近一次修改文件内容的时间 |
ctime |
最近一次改变文件属性的时间 |
3、目录的三个时间的含义
名称 |
含义 |
atime |
最近一次访问目录的时间 |
mtime |
最近一次修改目录内容的时间 |
ctime |
最近一次改变目录属性的时间 |