經過c程序更改文件的ctime和mtime與某個文件相同vim
源文件words.txt [root@bogon ~]# ll words.txt ;ll words.txt -u -rw-r--r-- 1 root root 740 7月 14 2007 words.txt -rw-r--r-- 1 root root 740 6月 12 09:33 words.txt 新建測試文件text.txt [root@bogon ~]# touch text.txt [root@bogon ~]# ll text.txt;ll text.txt -u -rw-r--r-- 1 root root 23 6月 21 09:20 text.txt -rw-r--r-- 1 root root 23 6月 21 09:20 text.txt 建立c程序 [root@bogon ~]# vim atimemtime.c #include <sys/stat.h> #include <fcntl.h> #include <utime.h> /*#include <quit.h>*/ int main(int argc,char **argv) { struct stat statbuf; struct utimbuf timebuf; lstat(argv[1],&statbuf); timebuf.actime=statbuf.st_atime; timebuf.modtime=statbuf.st_mtime; utime(argv[2],&timebuf); close(argv[2]); } 將c文件編譯,編譯後的文件名爲testc [root@bogon ~]# gcc -o testc atimemtime.c 修改測試文件text.txt的時間爲words.txt的訪問時間和修改時間 [root@bogon ~]# ./testc words.txt text.txt [root@bogon ~]# ll text.txt;ll text.txt -u -rw-r--r-- 1 root root 23 7月 14 2007 text.txt -rw-r--r-- 1 root root 23 6月 12 09:33 text.txt