RMDIR(2) | System Calls | RMDIR(2) |
rmdir - remove a directory
#include <unistd.h> int rmdir(const char *path);
The rmdir() function removes the directory named by the path name pointed to by path. The directory must not have any entries other than "." and "..".
If the directory's link count becomes zero and no process has the directory open, the space occupied by the directory is freed and the directory is no longer accessible. If one or more processes have the directory open when the last link is removed, the "." and ".." entries, if present, are removed before rmdir() returns and no new entries may be created in the directory, but the directory is not removed until all references to the directory have been closed.
Upon successful completion rmdir() marks for update the st_ctime and st_mtime fields of the parent directory.
Upon successful completion, 0 is returned. Otherwise, −1 is returned, errno is set to indicate the error, and the named directory is not changed.
The rmdir() function will fail if:
EACCES
Write permission is denied on the directory containing the directory to be removed and {PRIV_FILE_DAC_WRITE} is not asserted.
The parent directory has the S_ISVTX variable set, is not owned by the user, and {PRIV_FILE_OWNER} is not asserted.
The directory is not owned by the user and is not writable by the user.
EBUSY
EEXIST
EFAULT
EINVAL
EILSEQ
EIO
ELOOP
ENAMETOOLONG
ENOENT
ENOLINK
ENOTDIR
EROFS
See attributes(7) for descriptions of the following attributes:
ATTRIBUTE TYPE | ATTRIBUTE VALUE |
Interface Stability | Standard |
MT-Level | Async-Signal-Safe |
mkdir(1), rm(1), mkdir(2), attributes(7), privileges(7), standards(7)
May 18, 2007 | OmniOS |