remove() - C語言庫函數
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