* archival/bunzip2.c (bunzip2_main): Do not remove files if writing to standard
[oweals/busybox.git] / coreutils / rmdir.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini rmdir implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc. and Erik Andersen
6  * Copyright (C) 1999,2000,2001 by Erik Andersen <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include <getopt.h>
25 #include <unistd.h>
26 #include <stdlib.h>
27
28 #include "busybox.h"
29
30
31 /* Return true if a path is composed of multiple components.  */
32
33 static int
34 multiple_components_p (const char *path)
35 {
36         const char *s = path;
37
38         while (s[0] != '\0' && s[0] != '/')
39                 s++;
40
41         while (s[0] == '/')
42                 s++;
43
44         return (s[0] != '\0');
45 }
46
47
48 /* Remove a directory.  Returns 0 if successful, -1 on error.  */
49
50 static int
51 remove_directory (char *path, int flags)
52 {
53         if (!(flags & FILEUTILS_RECUR)) {
54                 if (rmdir (path) < 0) {
55                         perror_msg ("unable to remove `%s'", path);
56                         return -1;
57                 }
58         } else {
59                 if (remove_directory (path, 0) < 0)
60                         return -1;
61
62                 if (multiple_components_p (path))
63                         if (remove_directory (dirname (path), flags) < 0)
64                                 return -1;
65         }
66
67         return 0;
68 }
69
70
71 extern int
72 rmdir_main (int argc, char **argv)
73 {
74         int status = EXIT_SUCCESS;
75         int flags = 0;
76         int i, opt;
77
78         while ((opt = getopt (argc, argv, "p")) != -1)
79                 switch (opt) {
80                         case 'p':
81                                 flags |= FILEUTILS_RECUR;
82                                 break;
83
84                         default:
85                                 show_usage ();
86                 }
87
88         if (optind == argc)
89                 show_usage();
90
91         for (i = optind; i < argc; i++)
92                 if (remove_directory (argv[i], flags) < 0)
93                         status = EXIT_FAILURE;
94
95         return status;
96 }