|
||
int unlink( const char *path )
const char *path; /* Full path to a filename to delete */
|
|
|
Synopsis |
#include "stdio.h"
The unlink function removes the file path from the file system.
|
|
Parameters |
path is the full path to the file that is to be removed.
|
|
Return Value |
unlink returns -1 if an error occurred, and 0 otherwise.
|
|
See Also |
|
|
|
|