man.bsd.lv manual page server

Manual Page Search Parameters

REMOVE(3) Library Functions Manual REMOVE(3)

removeremove directory entry

#include <stdio.h>

int
remove(const char *path);

The () function is an alias for the unlink(2) system call. It deletes the file referenced by path.

Upon successful completion, remove() returns 0. Otherwise, -1 is returned and the global variable errno is set to indicate the error.

The remove() function may fail and set errno for any of the errors specified for the routine unlink(2).

unlink(2)

The remove() function conforms to ANSI X3.159-1989 (“ANSI C89”).

4.4BSD-Lite2 June 4, 1993 REMOVE(3)