1*8269e767SBrooks Davis.\" Copyright (c) 1983, 1991, 1993 2*8269e767SBrooks Davis.\" The Regents of the University of California. All rights reserved. 3*8269e767SBrooks Davis.\" 4*8269e767SBrooks Davis.\" Redistribution and use in source and binary forms, with or without 5*8269e767SBrooks Davis.\" modification, are permitted provided that the following conditions 6*8269e767SBrooks Davis.\" are met: 7*8269e767SBrooks Davis.\" 1. Redistributions of source code must retain the above copyright 8*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer. 9*8269e767SBrooks Davis.\" 2. Redistributions in binary form must reproduce the above copyright 10*8269e767SBrooks Davis.\" notice, this list of conditions and the following disclaimer in the 11*8269e767SBrooks Davis.\" documentation and/or other materials provided with the distribution. 12*8269e767SBrooks Davis.\" 3. Neither the name of the University nor the names of its contributors 13*8269e767SBrooks Davis.\" may be used to endorse or promote products derived from this software 14*8269e767SBrooks Davis.\" without specific prior written permission. 15*8269e767SBrooks Davis.\" 16*8269e767SBrooks Davis.\" THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 17*8269e767SBrooks Davis.\" ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18*8269e767SBrooks Davis.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19*8269e767SBrooks Davis.\" ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 20*8269e767SBrooks Davis.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21*8269e767SBrooks Davis.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22*8269e767SBrooks Davis.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23*8269e767SBrooks Davis.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24*8269e767SBrooks Davis.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25*8269e767SBrooks Davis.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26*8269e767SBrooks Davis.\" SUCH DAMAGE. 27*8269e767SBrooks Davis.\" 28*8269e767SBrooks Davis.Dd March 30, 2020 29*8269e767SBrooks Davis.Dt RMDIR 2 30*8269e767SBrooks Davis.Os 31*8269e767SBrooks Davis.Sh NAME 32*8269e767SBrooks Davis.Nm rmdir 33*8269e767SBrooks Davis.Nd remove a directory file 34*8269e767SBrooks Davis.Sh LIBRARY 35*8269e767SBrooks Davis.Lb libc 36*8269e767SBrooks Davis.Sh SYNOPSIS 37*8269e767SBrooks Davis.In unistd.h 38*8269e767SBrooks Davis.Ft int 39*8269e767SBrooks Davis.Fn rmdir "const char *path" 40*8269e767SBrooks Davis.Sh DESCRIPTION 41*8269e767SBrooks DavisThe 42*8269e767SBrooks Davis.Fn rmdir 43*8269e767SBrooks Davissystem call 44*8269e767SBrooks Davisremoves a directory file 45*8269e767SBrooks Daviswhose name is given by 46*8269e767SBrooks Davis.Fa path . 47*8269e767SBrooks DavisThe directory must not have any entries other 48*8269e767SBrooks Davisthan 49*8269e767SBrooks Davis.Ql .\& 50*8269e767SBrooks Davisand 51*8269e767SBrooks Davis.Ql \&.. . 52*8269e767SBrooks Davis.Sh RETURN VALUES 53*8269e767SBrooks Davis.Rv -std rmdir 54*8269e767SBrooks Davis.Sh ERRORS 55*8269e767SBrooks DavisThe named file is removed unless: 56*8269e767SBrooks Davis.Bl -tag -width Er 57*8269e767SBrooks Davis.It Bq Er ENOTDIR 58*8269e767SBrooks DavisA component of the path is not a directory. 59*8269e767SBrooks Davis.It Bq Er ENAMETOOLONG 60*8269e767SBrooks DavisA component of a pathname exceeded 255 characters, 61*8269e767SBrooks Davisor an entire path name exceeded 1023 characters. 62*8269e767SBrooks Davis.It Bq Er ENOENT 63*8269e767SBrooks DavisThe named directory does not exist. 64*8269e767SBrooks Davis.It Bq Er ELOOP 65*8269e767SBrooks DavisToo many symbolic links were encountered in translating the pathname. 66*8269e767SBrooks Davis.It Bq Er ENOTEMPTY 67*8269e767SBrooks DavisThe named directory contains files other than 68*8269e767SBrooks Davis.Ql .\& 69*8269e767SBrooks Davisand 70*8269e767SBrooks Davis.Ql ..\& 71*8269e767SBrooks Davisin it. 72*8269e767SBrooks Davis.It Bq Er EACCES 73*8269e767SBrooks DavisSearch permission is denied for a component of the path prefix. 74*8269e767SBrooks Davis.It Bq Er EACCES 75*8269e767SBrooks DavisWrite permission is denied on the directory containing the link 76*8269e767SBrooks Davisto be removed. 77*8269e767SBrooks Davis.It Bq Er EPERM 78*8269e767SBrooks DavisThe directory to be removed has its immutable, undeletable or append-only flag 79*8269e767SBrooks Davisset, see the 80*8269e767SBrooks Davis.Xr chflags 2 81*8269e767SBrooks Davismanual page for more information. 82*8269e767SBrooks Davis.It Bq Er EPERM 83*8269e767SBrooks DavisThe parent directory of the directory to be removed has its immutable or 84*8269e767SBrooks Davisappend-only flag set. 85*8269e767SBrooks Davis.It Bq Er EPERM 86*8269e767SBrooks DavisThe directory containing the directory to be removed is marked sticky, 87*8269e767SBrooks Davisand neither the containing directory nor the directory to be removed 88*8269e767SBrooks Davisare owned by the effective user ID. 89*8269e767SBrooks Davis.It Bq Er EINVAL 90*8269e767SBrooks DavisThe last component of the path is 91*8269e767SBrooks Davis.Ql .\& 92*8269e767SBrooks Davisor 93*8269e767SBrooks Davis.Ql .. . 94*8269e767SBrooks Davis.It Bq Er EBUSY 95*8269e767SBrooks DavisThe directory to be removed is the mount point 96*8269e767SBrooks Davisfor a mounted file system. 97*8269e767SBrooks Davis.It Bq Er EIO 98*8269e767SBrooks DavisAn I/O error occurred while deleting the directory entry 99*8269e767SBrooks Davisor deallocating the inode. 100*8269e767SBrooks Davis.It Bq Er EINTEGRITY 101*8269e767SBrooks DavisCorrupted data was detected while reading from the file system. 102*8269e767SBrooks Davis.It Bq Er EROFS 103*8269e767SBrooks DavisThe directory entry to be removed resides on a read-only file system. 104*8269e767SBrooks Davis.It Bq Er EFAULT 105*8269e767SBrooks DavisThe 106*8269e767SBrooks Davis.Fa path 107*8269e767SBrooks Davisargument 108*8269e767SBrooks Davispoints outside the process's allocated address space. 109*8269e767SBrooks Davis.El 110*8269e767SBrooks Davis.Sh SEE ALSO 111*8269e767SBrooks Davis.Xr mkdir 2 , 112*8269e767SBrooks Davis.Xr unlink 2 113*8269e767SBrooks Davis.Sh HISTORY 114*8269e767SBrooks DavisThe 115*8269e767SBrooks Davis.Fn rmdir 116*8269e767SBrooks Davissystem call appeared in 117*8269e767SBrooks Davis.Bx 4.2 . 118