FreeBSD Manual Pages
REMOVE(3) BSD Library Functions Manual REMOVE(3) NAME remove -- remove directory entry SYNOPSIS #include <stdio.h> int remove(const char *path); DESCRIPTION The remove() function is an alias for the unlink(2) system call. It deletes the file referenced by path. RETURN VALUES Upon successful completion, remove() returns 0. Otherwise, -1 is re- turned and the global variable errno is set to indicate the error. ERRORS The remove() function may fail and set errno for any of the errors speci- fied for the routine unlink(2). SEE ALSO unlink(2) STANDARDS The remove() function conforms to ANSI X3.159-1989 ("ANSI C89"). BSD June 4, 1993 BSD
NAME | SYNOPSIS | DESCRIPTION | RETURN VALUES | ERRORS | SEE ALSO | STANDARDS
Want to link to this manual page? Use this URL:
<https://www.freebsd.org/cgi/man.cgi?query=remove&sektion=3&manpath=FreeBSD+3.2-RELEASE>