每個文件維護了三個時間字段,它們的目的如下表所示:
臨渭區(qū)ssl適用于網站、小程序/APP、API接口等需要進行數據傳輸應用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯建站的ssl證書銷售渠道,可以享受市場價格4-6折優(yōu)惠!如果有意向歡迎電話聯系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!
Field | Description | Example | ls(1) option |
st_atime | last-access time of file data | read | -u |
st_mtime | last-modification time of file data | write | default |
st_ctime | last-change time of i-node status | chmod, chown | -c |
第118頁的示例代碼:
$ cat 4_21.c #include#include #include #include #include #include #include int main(int argc, char *argv[]) { int i, fd; struct stat statbuf; struct utimbuf timebuf; for (i = 1; i < argc; i++) { if (stat(argv[i], &statbuf) < 0) { printf("%s: stat error", argv[i]); continue; } if ((fd = open(argv[i], O_RDWR | O_TRUNC)) < 0) { printf("%s: open error", argv[i]); continue; } close(fd); timebuf.actime = statbuf.st_atime; timebuf.modtime = statbuf.st_mtime; if (utime(argv[i], &timebuf) < 0) { printf("%s: utime error", argv[i]); continue; } } exit(0); }
運行結果為:
$ gcc -g -o 4_21 4_21.c # 查看最后一次修改的時間 $ ls -l foo bar -rw------- 1 richard richard 0 Dec 4 2014 bar -rw------- 1 richard richard 0 Dec 4 2014 foo # 查看最后一次訪問的時間 $ ls -lu foo bar -rw------- 1 richard richard 0 Mar 20 20:41 bar -rw------- 1 richard richard 0 Mar 20 20:41 foo # 打印當前時間 $ date Sat Aug 29 13:13:26 CST 2015 # 執(zhí)行程序 $ ./4_21 foo bar # 檢查結果 $ ls -l foo bar -rw------- 1 richard richard 0 Dec 4 2014 bar -rw------- 1 richard richard 0 Dec 4 2014 foo # 檢查最后訪問時間 $ ls -lu foo bar -rw------- 1 richard richard 0 Mar 20 20:41 bar -rw------- 1 richard richard 0 Mar 20 20:41 foo # 檢查最后狀態(tài)改變時間 $ ls -lc foo bar -rw------- 1 richard richard 0 Aug 29 13:13 bar -rw------- 1 richard richard 0 Aug 29 13:13 foo