Интерактивная система просмотра системных руководств (man-ов)
remove (3)
remove (3) ( Solaris man: Библиотечные вызовы )>> remove (3) ( FreeBSD man: Библиотечные вызовы ) remove (3) ( Русские man: Библиотечные вызовы ) remove (3) ( Linux man: Библиотечные вызовы ) remove (3) ( POSIX man: Библиотечные вызовы )
BSD mandoc
NAME
remove
- remove directory entry
LIBRARY
Lb libc
SYNOPSIS
#include <stdio.h>
int
remove (const char *path);
DESCRIPTION
The
remove ();
function removes the file or directory specified by
Fa path .
If
Fa path
specifies a directory,
remove (path);
is the equivalent of
rmdir (path .);
Otherwise, it is the equivalent of
unlink (path .);
RETURN VALUES
Rv -std remove
ERRORS
The
remove ();
function
may fail and set
errno
for any of the errors specified for the routines
lstat(2),
rmdir(2)
or
unlink(2).
SEE ALSO
rmdir(2),
unlink(2)
STANDARDS
The
remove ();
function conforms to
St -isoC
and
St -xpg4.2 .
Index
- NAME
-
- LIBRARY
-
- SYNOPSIS
-
- DESCRIPTION
-
- RETURN VALUES
-
- ERRORS
-
- SEE ALSO
-
- STANDARDS
-