C library function - remove()
Advertisements
Description
The C library function int remove(const char *filename) deletes the given filename so that it is no longer accessible.
Declaration
Following is the declaration for remove() function.
int remove(const char *filename)
Parameters
filename -- This is the C string containing the name of the file to be deleted.
Return Value
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.
Example
The following example shows the usage of remove() function.
#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);
}
Assuming we have a text file file.txt having some content. So we are going to delete this file, using above program. Let us compile and run the above program, this will produce the following message and file will be deleted permanently.
File deleted successfully