Home | Mirror | Search

4. stat

modification time(mtime,修改時間):當該檔案的“內容數據”更改時,會更新這個時間。內容數據指的是檔案的內容,而不是檔案的屬性。
status time(ctime,狀態時間):當該檔案的”狀態(status)”改變時,就會更新這個時間,舉例,更改了權限與屬性,就會更新這個時間。
access time(atime,存取時間):當“取用檔案內容”時,就會更新這個讀取時間。舉例來使用cat去讀取該檔案,就會更新atime了。
		
[root@apache www]# stat index.html
  File: `index.html'
  Size: 145355          Blocks: 296        IO Block: 4096   regular file
Device: fd01h/64769d    Inode: 15861815    Links: 1
Access: (0755/-rwxr-xr-x)  Uid: (  502/  upuser)   Gid: (  502/  upuser)
Access: 2010-10-28 11:09:52.000000000 +0800
Modify: 2010-10-28 10:23:13.000000000 +0800
Change: 2010-10-28 10:23:13.000000000 +0800
		
comments powered by Disqus