Query: remove
OS: linux
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
REMOVE(3) Linux Programmer's Manual REMOVE(3)NAMEremove - remove a file or directorySYNOPSIS#include <stdio.h> int remove(const char *pathname);DESCRIPTIONremove() deletes a name from the file system. 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 VALUEOn success, zero is returned. On error, -1 is returned, and errno is set appropriately.ERRORSThe errors that occur are those for unlink(2) and rmdir(2).CONFORMING TOC89, C99, 4.3BSD, POSIX.1-2001.NOTESUnder libc4 and libc5, remove() was an alias for unlink(2) (and hence would not remove directories).BUGSInfelicities in the protocol underlying NFS can cause the unexpected disappearance of files which are still being used.SEE ALSOrm(1), unlink(1), link(2), mknod(2), open(2), rename(2), rmdir(2), unlink(2), mkfifo(3), symlink(7)COLOPHONThis page is part of release 3.27 of the Linux man-pages project. A description of the project, and information about reporting bugs, can be found at http://www.kernel.org/doc/man-pages/.GNU2008-12-03 REMOVE(3)
Related Man Pages |
---|
unlink(2) - linux |
remove(3) - redhat |
unlinkat(2) - minix |
unlinkat(2) - opendarwin |
remove(3) - xfree86 |
Similar Topics in the Unix Linux Community |
---|
remove application |
FIND and REMOVE HELP NEEDED!!! |
Accidentally did a unlink inet |
how to remove the files along with its link files |
Remove post please |