remove - remove files
#include <stdio.h> int remove(const char *path);
The remove() function causes the file named by the pathname pointed to by path to be no longer accessible by that name. A subsequent attempt to open that file using that name will fail, unless it is created anew.If path does not name a directory, remove(path) is equivalent to unlink(path).
If path names a directory, remove(path) is equivalent to rmdir(path).
Refer to rmdir() or unlink().
Refer to rmdir() or unlink().
None.
None.
None.
rmdir(), unlink(), <stdio.h>.
Derived from the POSIX.1-1988 standard and ANSI C standard