Linux中對檔案刪除函式unlink的操作

丫就是熊個貓貓發表於2016-12-28

原文轉自:http://blog.chinaunix.net/uid-26983585-id-3245451.html

看了unlink()函式是對檔案的刪除,於是寫了一個函式進行測試之,結果發現在呼叫了unlink以後仍然可以對檔案進行讀寫操作,又看了一下書才明白是我沒有明白unlink函式的真正含義:刪除目錄相併減少一個連線數,如果連結數為0並且沒有任何程式開啟該檔案,該檔案內容才能被真正刪除,但是若又程式開啟了該檔案,則檔案暫時不刪除直到所有開啟該檔案的程式都結束時檔案才能被刪除。

測試程式碼:

點選(此處)摺疊或開啟

  1. #include<stdio.h>
  2. #include<sys/types.h>
  3. #include<sys/stat.h>
  4. #include<fcntl.h>
  5. #include<unistd.h>
  6. int main()
  7. {
  8.     int fd;
  9.     char buf[32];
  10.     struct stat buff;

  11.     if((fd=open("temp.txt",O_RDWR|O_CREAT|O_TRUNC,S_IRWXU))<0){
  12.         printf("create file error!\n");
  13.     }
  14.     stat("temp.txt",&buff);
  15.     printf("temp.link=%d\n",buff.st_nlink);
  16.     link("temp.txt","test.txt");
  17.     stat("test.txt",&buff);
  18.     printf("after link the tem.link =%d\n",buff.st_nlink);
  19.     if(unlink("temp.txt")<0){
  20.         printf("unlink error !\n");
  21.     }
  22.     stat("temp.txt",&buff);
  23.     printf("after unlink tem.link=%d\n",buff.st_nlink);
  24.     if(write(fd,"temp",5)<0){
  25.         printf("write wrror!\n");
  26.     }
  27.     if((lseek(fd,0,SEEK_SET))==-1){
  28.         printf("lseek error!\n");
  29.     }
  30.     if((read(fd,buf,5))<0){
  31.         printf("read error!\n");
  32.     }
  33.     printf("%s\n",buf);
  34.     return 0;
  35. }

有關unlink的更多資訊:
http://www.cnblogs.com/codingmonkey/articles/2431078.html

相關文章