简名 | 全名 | 中文 | 作用 |
atime | Access Time | 访问时间 |
最后一次访问文件(读取或执行)的时间 |
ctime | Change Time | 变化时间 |
最后一次改变文件(属性或权限)或者目录(属性或权限)的时间 |
mtime | Modify Time | 修改时间 |
最后一次修改文件(内容)或者目录(内容)的时间 |
Windows
#先创建文件new-item test.txt
PS C:\Users\So\Desktop> new-item test.txt 目录: C:\Users\So\Desktop Mode LastWriteTime Length Name ---- ------------- ------ ---- -a---- 2021/1/16 18:28 0 test.txt
#powershell显示文件的创建、最后修改、最后访问时间 属性
PS C:\Users\So\Desktop> (ls test.txt).CreationTimeUtc 2021年1月16日 10:28:45 PS C:\Users\So\Desktop> (ls test.txt).LastWriteTimeUtc 2021年1月16日 10:28:45 PS C:\Users\So\Desktop> (ls test.txt).LastAccessTimeUtc 2021年1月16日 10:28:45
#powershell设置文件的创建、最后修改、最后访问时间属性
PS C:\Users\So\Desktop> (ls test.txt).LastAccessTimeUtc="2019-12-31 22:33:44"
PS C:\Users\So\Desktop> (ls test.txt).LastAccessTimeUtc 2019年12月31日 22:33:44
PS C:\Users\So\Desktop> (ls test.txt).LastWriteTimeUtc="2019-12-31 22:33:44" PS C:\Users\So\Desktop> (ls test.txt).LastWriteTimeUtc 2019年12月31日 22:33:44
PS C:\Users\So\Desktop> (ls test.txt).LastCreatTimeUtc="2019-12-31 22:33:44" PS C:\Users\So\Desktop> (ls test.txt).LastCreatTimeUtc 2019年12月31日 22:33:44
Linux
#如何查看atime、ctime、mtime
stat filename
#什么命令会修改atime、ctime、mtime
命令 | atime | mtime | ctime |
mv | N | N | Y |
cp | Y | N | N |
chmod | N | N | Y |
chown | N | N | Y |
touch | Y | Y | Y |
>、>> | Y | Y | Y |
vim、vi(不修改) | Y | N | N |
vim、vi(修改) | Y | Y | Y |
./test.sh | Y | N | N |