hush/coreutils/rmdir.c

71 lines
1.6 KiB
C
Raw Normal View History

/* vi: set sw=4 ts=4: */
1999-10-13 21:12:06 +00:00
/*
2003-03-19 09:13:01 +00:00
* rmdir implementation for busybox
1999-10-13 21:12:06 +00:00
*
2003-03-19 09:13:01 +00:00
* Copyright (C) 2003 Manuel Novoa III <mjn3@codepoet.org>
1999-10-13 21:12:06 +00:00
*
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
1999-10-13 21:12:06 +00:00
*/
2003-03-19 09:13:01 +00:00
/* BB_AUDIT SUSv3 compliant */
/* http://www.opengroup.org/onlinepubs/007904975/utilities/rmdir.html */
2001-08-29 21:18:47 +00:00
#include "libbb.h"
1999-10-05 16:24:54 +00:00
/* This is a NOFORK applet. Be very careful! */
#define PARENTS 0x01
#define IGNORE_NON_EMPTY 0x02
int rmdir_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
2008-07-05 09:18:54 +00:00
int rmdir_main(int argc UNUSED_PARAM, char **argv)
1999-10-05 16:24:54 +00:00
{
2000-11-22 01:09:38 +00:00
int status = EXIT_SUCCESS;
2003-03-19 09:13:01 +00:00
int flags;
char *path;
2000-11-22 01:09:38 +00:00
#if ENABLE_FEATURE_RMDIR_LONG_OPTIONS
static const char rmdir_longopts[] ALIGN1 =
"parents\0" No_argument "p"
/* Debian etch: many packages fail to be purged or installed
* because they desperately want this option: */
"ignore-fail-on-non-empty\0" No_argument "\xff"
;
applet_long_options = rmdir_longopts;
#endif
flags = getopt32(argv, "p");
2003-03-19 09:13:01 +00:00
argv += optind;
2001-08-29 21:18:47 +00:00
2003-03-19 09:13:01 +00:00
if (!*argv) {
bb_show_usage();
}
1999-10-13 21:12:06 +00:00
2003-03-19 09:13:01 +00:00
do {
path = *argv;
while (1) {
2003-03-19 09:13:01 +00:00
if (rmdir(path) < 0) {
#if ENABLE_FEATURE_RMDIR_LONG_OPTIONS
if ((flags & IGNORE_NON_EMPTY) && errno == ENOTEMPTY)
break;
#endif
bb_perror_msg("'%s'", path); /* Match gnu rmdir msg. */
2003-03-19 09:13:01 +00:00
status = EXIT_FAILURE;
} else if (flags & PARENTS) {
/* Note: path was not "" since rmdir succeeded. */
2003-03-19 09:13:01 +00:00
path = dirname(path);
/* Path is now just the parent component. Dirname
* returns "." if there are no parents.
*/
if (NOT_LONE_CHAR(path, '.')) {
2003-03-19 09:13:01 +00:00
continue;
}
}
break;
}
2003-03-19 09:13:01 +00:00
} while (*++argv);
2001-08-29 21:18:47 +00:00
2000-11-22 01:09:38 +00:00
return status;
1999-10-05 16:24:54 +00:00
}