test-getopt: test stderr behavior
[gnulib.git] / doc / posix-functions / rmdir.texi
1 @node rmdir
2 @section @code{rmdir}
3 @findex rmdir
4
5 POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/rmdir.html}
6
7 Gnulib module: rmdir
8
9 Portability problems fixed by Gnulib:
10 @itemize
11 @item
12 This function mistakenly removes a directory with
13 @code{rmdir("dir/./")} on some platforms:
14 Cygwin 1.5.x.
15 @item
16 This function fails with @code{EINVAL} instead of the expected
17 @code{ENOTDIR} for @code{rmdir("file/")} on some platforms:
18 mingw.
19 @item
20 This function is missing on some old platforms.
21 @end itemize
22
23 Portability problems not fixed by Gnulib:
24 @itemize
25 @item
26 When @code{rmdir} fails because the specified directory is not empty, the
27 @code{errno} value is system dependent.
28 @item
29 POSIX requires that @code{rmdir("link-to-empty/")} remove @file{empty}
30 and leave @file{link-to-empty} as a dangling symlink.  This is
31 counter-intuitive, so some systems fail with @code{ENOTDIR} instead:
32 glibc
33 @end itemize