unlink() - remove directory entry
#include <unistd.h>
int unlink (const char *path)
The unlink(2) function removes the link named by path from its directory and decrements the link count of the file which was referenced by the link. If that decrement reduces the link count of the file to zero, and no process has the file open, then all resources associated with the file are reclaimed. If one or more process have the file open when the last link is removed, the link is removed, but the removal of the file is delayed until all references to it have been closed.
Calling unlink(2) with a directory is not supported.
Upon successful completion, a value of 0 is returned. Otherwise, a value of -1 is returned and errno is set to indicate the error.
The unlink(2) succeeds unless:
close(2)
link(2)
remove(3)
rmdir(2)