linux 中atime、mtime、ctime
2022/3/28 7:26:21
本文主要是介绍linux 中atime、mtime、ctime,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
1、使用stat命令获取atime、mtime、ctime
root@ubuntu01:/home/test# ls a.txt root@ubuntu01:/home/test# stat a.txt File: a.txt Size: 10 Blocks: 8 IO Block: 4096 regular file Device: 805h/2053d Inode: 532492 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2022-03-27 12:00:07.113429738 +0800 ## 最后访问的时间 Modify: 2022-03-27 11:59:40.697435221 +0800 ## 最后修改的时间 Change: 2022-03-27 11:59:40.697435221 +0800 ## 最后改变的时间(属性、权限) Birth: -
2、atime因为系统性能的问题,已经不再每次访问实时更新了。https://www.cnblogs.com/liujiaxin2018/p/16062424.html
3、查看mtime、ctime
root@ubuntu01:/home/test# ls a.txt root@ubuntu01:/home/test# stat a.txt ## 查看三种time File: a.txt Size: 10 Blocks: 8 IO Block: 4096 regular file Device: 805h/2053d Inode: 532492 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2022-03-27 12:00:07.113429738 +0800 Modify: 2022-03-27 11:59:40.697435221 +0800 Change: 2022-03-27 11:59:40.697435221 +0800 Birth: - root@ubuntu01:/home/test# date ## 查看当前系统时间 2022年 03月 27日 星期日 12:10:09 CST root@ubuntu01:/home/test# echo "xxxx" >> a.txt ## 修改文件内容 root@ubuntu01:/home/test# stat a.txt ## 查看修改和改变时间, 这说明对文件内容的修改直接影响 mtime和ctime File: a.txt Size: 15 Blocks: 8 IO Block: 4096 regular file Device: 805h/2053d Inode: 532492 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2022-03-27 12:00:07.113429738 +0800 Modify: 2022-03-27 12:10:14.193446498 +0800 Change: 2022-03-27 12:10:14.193446498 +0800 Birth: -
为什么修改文件内容ctime会发生改变?
当修改文件时,文件大小等也属于文件的属性,因此ctime也会改变。
4、测试ctime
root@ubuntu01:/home/test# ls a.txt root@ubuntu01:/home/test# stat a.txt ## 查看time File: a.txt Size: 15 Blocks: 8 IO Block: 4096 regular file Device: 805h/2053d Inode: 532492 Links: 1 Access: (0644/-rw-r--r--) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2022-03-27 12:00:07.113429738 +0800 Modify: 2022-03-27 12:10:14.193446498 +0800 Change: 2022-03-27 12:10:14.193446498 +0800 Birth: - root@ubuntu01:/home/test# ll a.txt ## 查看权限 -rw-r--r-- 1 root root 15 3月 27 12:10 a.txt root@ubuntu01:/home/test# date ## 系统时间 2022年 03月 27日 星期日 12:15:29 CST root@ubuntu01:/home/test# chmod +x a.txt ## 修改文件权限 root@ubuntu01:/home/test# ll a.txt ## 查看权限 -rwxr-xr-x 1 root root 15 3月 27 12:10 a.txt* root@ubuntu01:/home/test# stat a.txt ## 统计时间, 说明对权限的修改只影响 ctime。 File: a.txt Size: 15 Blocks: 8 IO Block: 4096 regular file Device: 805h/2053d Inode: 532492 Links: 1 Access: (0755/-rwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root) Access: 2022-03-27 12:00:07.113429738 +0800 Modify: 2022-03-27 12:10:14.193446498 +0800 Change: 2022-03-27 12:15:43.007038471 +0800 Birth: -
这篇关于linux 中atime、mtime、ctime的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-11-12如何创建可引导的 ESXi USB 安装介质 (macOS, Linux, Windows)
- 2024-11-08linux的 vi编辑器中搜索关键字有哪些常用的命令和技巧?-icode9专业技术文章分享
- 2024-11-08在 Linux 的 vi 或 vim 编辑器中什么命令可以直接跳到文件的结尾?-icode9专业技术文章分享
- 2024-10-22原生鸿蒙操作系统HarmonyOS NEXT(HarmonyOS 5)正式发布
- 2024-10-18操作系统入门教程:新手必看的基本操作指南
- 2024-10-18初学者必看:操作系统入门全攻略
- 2024-10-17操作系统入门教程:轻松掌握操作系统基础知识
- 2024-09-11Linux部署Scrapy学习:入门级指南
- 2024-09-11Linux部署Scrapy:入门级指南
- 2024-08-21【Linux】分区向左扩容的方法