remove (3)
Leading comments
This file is derived from unlink.2, which has the following copyright: This manpage is Copyright (C) 1992 Drew Eckhardt; and Copyright (C) 1993 Ian Jackson. Edited into remove.3 shape by: Graeme W. Wilford (G.Wilford@ee.surrey.ac.uk) on 13th July 1994 %%%LICENSE_START(VERBATIM) Permission is granted to make and distribute verbatim copies of this manual provided the copyright notice and this permission notice are preserved on all copies. Permission is granted to copy and distri...
NAME
remove - remove a file or directorySYNOPSIS
#include <stdio.h>int remove(const char *pathname);
DESCRIPTION
remove() deletes a name from the filesystem. It calls unlink(2) for files, and rmdir(2) for directories.If the removed name was the last link to a file and no processes have the file open, the file is deleted and the space it was using is made available for reuse.
If the name was the last link to a file, but any processes still have the file open, the file will remain in existence until the last file descriptor referring to it is closed.
If the name referred to a symbolic link, the link is removed.
If the name referred to a socket, FIFO, or device, the name is removed, but processes which have the object open may continue to use it.
RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.ERRORS
The errors that occur are those for unlink(2) and rmdir(2).ATTRIBUTES
For an explanation of the terms used in this section, see attributes(7).Interface | Attribute | Value |
remove() | Thread safety | MT-Safe |