命令
全程說明
mitme
modify time
修改時間(檔案內容變化,修改檔案儲存以後)
ctime
change time
屬性改變的時間(檔案屬性、大小、變化、型別、inode、許可權、所有者使用者組、硬鏈結數量)
atime
access time
訪問時間(cat)
-c with -lt: sort by, and show, ctime (time of last modification of
file status information)
; with -l: show ctime and sort by name;
otherwise: sort by ctime, newest first
-u with -lt: sort by, and show, access time; with -l: show access
time and sort by name; otherwise: sort by access time
ctime
[root@shell ~
141]# ls -cl
total 8
-rw-r--r--
.1 root root 1031 aug 411:
562.txt
lrwxrwxrwx.
1 root root 5 aug 400:
493.txt ->
1.txt
-rw--
-----.
1 root root 1264 jul 2215:
19 anaconda-ks.cfg
drwxr-xr-x.
2 root root 61 aug 412:
58 test
-rw-rw----.
1 root root 0 aug 411:
02 zheng
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.c
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.sh
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.txt
atime
[root@shell ~
142]# ls -ul
total 8
-rw-r--r--
.1 root root 1031 aug 323:
432.txt
lrwxrwxrwx.
1 root root 5 aug 400:
493.txt ->
1.txt
-rw--
-----.
1 root root 1264 jul 2215:
19 anaconda-ks.cfg
drwxr-xr-x.
2 root root 61 aug 412:
57 test
-rw-rw----.
1 root root 0 aug 411:
02 zheng
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.c
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.sh
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.txt
mtime
[root@shell ~
143]# ls -l
total 8
-rw-r--r--
.1 root root 1031 aug 411:
562.txt
lrwxrwxrwx.
1 root root 5 aug 400:
493.txt ->
1.txt
-rw--
-----.
1 root root 1264 jul 2215:
19 anaconda-ks.cfg
drwxr-xr-x.
2 root root 61 aug 412:
58 test
-rw-rw----.
1 root root 0 aug 411:
02 zheng
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.c
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.sh
-rw-r--r--
.1 root root 0 aug 412:
52 zheng.txt
Linux下面的兩種檔案鎖
檔案鎖是一種檔案讀寫機制,在任何特定的時間只允許乙個程序訪問乙個檔案。利用這種機制能夠使讀寫單個檔案的過程變得更安全。在這篇文章中,我們將 linux中不同型別的檔案鎖,並通過示例程式來理解它們之間的不同之處。我們將採取以下的例子來解釋為什麼需要使用檔案鎖。1 程序 a 開啟和讀取乙個檔案,此檔案包...
linux檔案的三種時間屬性
linux檔案的三種時間屬性 在windows下,乙個檔案有三種時間屬性 建立時間 修改時間 訪問時間。而在linux下,乙個檔案也有三種時間屬性 訪問時間 修改時間 狀態改動時間。兩者有此不同,在linux下沒有建立時間的概念,也就是不能知道檔案的建立時間,但 如果檔案建立後就沒有修改過,修改時間...
C 裡面的三種Timer
在.net中有三種計時器,一是system.windows.forms命名空間下的timer控制項,它直接繼承自componet 二是system.timers命名空間下的timer類。timer控制項 timer控制項只有繫結了tick事件,和設定enabled true後才會自動計時,停止計時可...