RMDIR
Section: User Commands (1)Updated: January 2018
Index Return to Main Contents
NAME
rmdir - remove empty directoriesSYNOPSIS
rmdir [,OPTION/]... ,DIRECTORY/...DESCRIPTION
Remove the DIRECTORY(ies), if they are empty.
- --ignore-fail-on-non-empty
-
- ignore each failure that is solely because a directory
- is non-empty
- -p, --parents
- remove DIRECTORY and its ancestors; e.g., 'rmdir -p a/b/c' is similar to 'rmdir a/b/c a/b a'
- -v, --verbose
- output a diagnostic for every directory processed
- --help
- display this help and exit
- --version
- output version information and exit
AUTHOR
Written by David MacKenzie.REPORTING BUGS
GNU coreutils online help: <http://www.gnu.org/software/coreutils/>Report rmdir translation bugs to <http://translationproject.org/team/>
COPYRIGHT
Copyright © 2017 Free Software Foundation, Inc. License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>.This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
SEE ALSO
rmdir(2)
Full documentation at: <http://www.gnu.org/software/coreutils/rmdir>
or available locally via: info '(coreutils) rmdir invocation'
Index
This document was created by man2html, using the manual pages.
Time: 04:45:32 GMT, September 16, 2022 Content-type: text/html; charset=UTF-8
RMDIR
Section: Linux Programmer's Manual (2)Updated: 2015-08-08
Index Return to Main Contents
NAME
rmdir - delete a directorySYNOPSIS
#include <unistd.h>int rmdir(const char *pathname);
DESCRIPTION
rmdir() deletes a directory, which must be empty.RETURN VALUE
On success, zero is returned. On error, -1 is returned, and errno is set appropriately.ERRORS
- EACCES
- Write access to the directory containing pathname was not allowed, or one of the directories in the path prefix of pathname did not allow search permission. (See also path_resolution(7).
- EBUSY
- pathname is currently in use by the system or some process that prevents its removal. On Linux, this means pathname is currently used as a mount point or is the root directory of the calling process.
- EFAULT
- pathname points outside your accessible address space.
- EINVAL
- pathname has . as last component.
- ELOOP
- Too many symbolic links were encountered in resolving pathname.
- ENAMETOOLONG
- pathname was too long.
- ENOENT
- A directory component in pathname does not exist or is a dangling symbolic link.
- ENOMEM
- Insufficient kernel memory was available.
- ENOTDIR
- pathname, or a component used as a directory in pathname, is not, in fact, a directory.
- ENOTEMPTY
- pathname contains entries other than . and .. ; or, pathname has .. as its final component. POSIX.1 also allows EEXIST for this condition.
- EPERM
- The directory containing pathname has the sticky bit (S_ISVTX) set and the process's effective user ID is neither the user ID of the file to be deleted nor that of the directory containing it, and the process is not privileged (Linux: does not have the CAP_FOWNER capability).
- EPERM
- The filesystem containing pathname does not support the removal of directories.
- EROFS
- pathname refers to a directory on a read-only filesystem.
CONFORMING TO
POSIX.1-2001, POSIX.1-2008, SVr4, 4.3BSD.BUGS
Infelicities in the protocol underlying NFS can cause the unexpected disappearance of directories which are still being used.SEE ALSO
rm(1), rmdir(1), chdir(2), chmod(2), mkdir(2), rename(2), unlink(2), unlinkat(2)COLOPHON
This page is part of release 4.15 of the Linux man-pages project. A description of the project, information about reporting bugs, and the latest version of this page, can be found at https://www.kernel.org/doc/man-pages/.
Index
This document was created by man2html, using the manual pages.
Time: 04:45:35 GMT, September 16, 2022
0 댓글