C庫函式 int remove(const char *filename)刪除的給定檔案名,以便它不再存取。
以下是remove()函式的宣告。
int remove(const char *filename)
filename -- 這是C包含要刪除的檔案的名稱的字串。
成功則返回0。錯誤則返回-1,設定errno。
下面的例子演示了如何使用remove()函式。
#include <stdio.h> #include <string.h> int main () { int ret; char filename[] = "file.txt"; ret = remove(filename); if(ret == 0) { printf("File deleted successfully"); } else { printf("Error: unable to delete the file"); } return(0); }
假設我們有一個文字檔案file.txt 的一些內容。所以我們要刪除此檔案,用上面的程式。讓我們編譯和執行上面的程式,這將產生以下訊息將被永久刪除檔案。
File deleted successfully