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-12-18git仓库有更新,jenkins 自动触发拉代码怎么配置的?-icode9专业技术文章分享
- 2024-12-18Jenkins webhook 方式怎么配置指定的分支?-icode9专业技术文章分享
- 2024-12-13Linux C++项目实战入门教程
- 2024-12-13Linux C++编程项目实战入门教程
- 2024-12-11Linux部署Scrapy教程:新手入门指南
- 2024-12-11怎么将在本地创建的 Maven 仓库迁移到 Linux 服务器上?-icode9专业技术文章分享
- 2024-12-10Linux常用命令
- 2024-12-06谁看谁服! Linux 创始人对于进程和线程的理解是…
- 2024-12-04操作系统教程:新手入门及初级技巧详解
- 2024-12-04操作系统入门:新手必学指南