C语言 <stdio.h> remove() 函数
-
描述
C库函数int remove(const char * filename)删除给定的filename使其不再可访问。 -
声明
以下是remove()函数的声明。int remove(const char *filename)
参数- filename - 这是C字符串,包含要删除的文件的名称。
-
返回值
成功时,返回零。如果出错,则返回-1,并正确设置errno。示例以下示例显示remove()函数的用法-#include <stdio.h> #include <string.h> int main () { int ret; FILE *fp; char filename[] = "file.txt"; fp = fopen(filename, "w"); fprintf(fp, "%s", "This is tutorialspoint.com"); fclose(fp); 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