*** empty log message ***
[coreutils.git] / src / rmdir.c
blob8c4ec98f20b136a5641de70c7ef59be0e08252d1
1 /* rmdir -- remove directories
2 Copyright (C) 90, 91, 1995-2002 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2, or (at your option)
7 any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software Foundation,
16 Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
18 /* Options:
19 -p, --parent Remove any parent dirs that are explicitly mentioned
20 in an argument, if they become empty after the
21 argument file is removed.
23 David MacKenzie <djm@ai.mit.edu> */
25 #include <config.h>
26 #include <stdio.h>
27 #include <getopt.h>
28 #include <sys/types.h>
30 #include "system.h"
31 #include "dirname.h"
32 #include "error.h"
33 #include "quote.h"
35 /* The official name of this program (e.g., no `g' prefix). */
36 #define PROGRAM_NAME "rmdir"
38 #define AUTHORS "David MacKenzie"
40 #ifndef EEXIST
41 # define EEXIST 0
42 #endif
44 #ifndef ENOTEMPTY
45 # define ENOTEMPTY 0
46 #endif
48 /* The name this program was run with. */
49 char *program_name;
51 /* If nonzero, remove empty parent directories. */
52 static int empty_paths;
54 /* If nonzero, don't treat failure to remove a nonempty directory
55 as an error. */
56 static int ignore_fail_on_non_empty;
58 /* If nonzero, output a diagnostic for every directory processed. */
59 static int verbose;
61 /* For long options that have no equivalent short option, use a
62 non-character as a pseudo short option, starting with CHAR_MAX + 1. */
63 enum
65 IGNORE_FAIL_ON_NON_EMPTY_OPTION = CHAR_MAX + 1
68 static struct option const longopts[] =
70 /* Don't name this `--force' because it's not close enough in meaning
71 to e.g. rm's -f option. */
72 {"ignore-fail-on-non-empty", no_argument, NULL,
73 IGNORE_FAIL_ON_NON_EMPTY_OPTION},
75 {"path", no_argument, NULL, 'p'},
76 {"parents", no_argument, NULL, 'p'},
77 {"verbose", no_argument, NULL, 'v'},
78 {GETOPT_HELP_OPTION_DECL},
79 {GETOPT_VERSION_OPTION_DECL},
80 {NULL, 0, NULL, 0}
83 /* Return nonzero if ERROR_NUMBER is one of the values associated
84 with a failed rmdir due to non-empty target directory. */
86 static int
87 errno_rmdir_non_empty (int error_number)
89 return (error_number == RMDIR_ERRNO_NOT_EMPTY);
92 /* Remove any empty parent directories of PATH.
93 If PATH contains slash characters, at least one of them
94 (beginning with the rightmost) is replaced with a NUL byte. */
96 static int
97 remove_parents (char *path)
99 char *slash;
100 int fail = 0;
102 strip_trailing_slashes (path);
103 while (1)
105 slash = strrchr (path, '/');
106 if (slash == NULL)
107 break;
108 /* Remove any characters after the slash, skipping any extra
109 slashes in a row. */
110 while (slash > path && *slash == '/')
111 --slash;
112 slash[1] = 0;
114 /* Give a diagnostic for each attempted removal if --verbose. */
115 if (verbose)
116 error (0, 0, _("removing directory, %s"), path);
118 fail = rmdir (path);
120 if (fail)
122 /* Stop quietly if --ignore-fail-on-non-empty. */
123 if (ignore_fail_on_non_empty
124 && errno_rmdir_non_empty (errno))
126 fail = 0;
128 else
130 error (0, errno, "%s", quote (path));
132 break;
135 return fail;
138 void
139 usage (int status)
141 if (status != 0)
142 fprintf (stderr, _("Try `%s --help' for more information.\n"),
143 program_name);
144 else
146 printf (_("Usage: %s [OPTION]... DIRECTORY...\n"), program_name);
147 fputs (_("\
148 Remove the DIRECTORY(ies), if they are empty.\n\
150 --ignore-fail-on-non-empty\n\
151 ignore each failure that is solely because a directory\n\
152 is non-empty\n\
153 "), stdout);
154 fputs (_("\
155 -p, --parents remove DIRECTORY, then try to remove each directory\n\
156 component of that path name. E.g., `rmdir -p a/b/c' is\n\
157 similar to `rmdir a/b/c a/b a'.\n\
158 -v, --verbose output a diagnostic for every directory processed\n\
159 "), stdout);
160 fputs (HELP_OPTION_DESCRIPTION, stdout);
161 fputs (VERSION_OPTION_DESCRIPTION, stdout);
162 printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
164 exit (status);
168 main (int argc, char **argv)
170 int errors = 0;
171 int optc;
173 program_name = argv[0];
174 setlocale (LC_ALL, "");
175 bindtextdomain (PACKAGE, LOCALEDIR);
176 textdomain (PACKAGE);
178 atexit (close_stdout);
180 empty_paths = 0;
182 while ((optc = getopt_long (argc, argv, "pv", longopts, NULL)) != -1)
184 switch (optc)
186 case 0: /* Long option. */
187 break;
188 case 'p':
189 empty_paths = 1;
190 break;
191 case IGNORE_FAIL_ON_NON_EMPTY_OPTION:
192 ignore_fail_on_non_empty = 1;
193 break;
194 case 'v':
195 verbose = 1;
196 break;
197 case_GETOPT_HELP_CHAR;
198 case_GETOPT_VERSION_CHAR (PROGRAM_NAME, AUTHORS);
199 default:
200 usage (EXIT_FAILURE);
204 if (optind == argc)
206 error (0, 0, _("too few arguments"));
207 usage (EXIT_FAILURE);
210 for (; optind < argc; ++optind)
212 int fail;
213 char *dir = argv[optind];
215 /* Give a diagnostic for each attempted removal if --verbose. */
216 if (verbose)
217 error (0, 0, _("removing directory, %s"), dir);
219 fail = rmdir (dir);
221 if (fail)
223 if (ignore_fail_on_non_empty
224 && errno_rmdir_non_empty (errno))
225 continue;
227 error (0, errno, "%s", quote (dir));
228 errors = 1;
230 else if (empty_paths)
232 errors += remove_parents (dir);
236 exit (errors == 0 ? EXIT_SUCCESS : EXIT_FAILURE);