From 9fd1a3ecdab9081b698bb3626485c53ffadd7d7d Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Thu, 3 Jan 2019 06:03:24 -0800 Subject: [PATCH] Better error reporting, and now handles files or directories. --- nuke.c | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/nuke.c b/nuke.c index 18ff983..b92c262 100644 --- a/nuke.c +++ b/nuke.c @@ -4,9 +4,10 @@ */ #include "colors.h" -#include "list.h" #include "globe.h" +#include "list.h" #include +#include #include #include #include @@ -115,7 +116,12 @@ int unlink_cb(const char *fpath, const struct stat *sb, int typeflag, struct FTW int rmrf(char *path) { + DIR *dir; + if (!(dir = opendir(path))) { + return remove(path); + } else { return nftw(path, unlink_cb, 64, FTW_DEPTH | FTW_PHYS); + } } int main(int argc, char *argv[]) @@ -446,7 +452,7 @@ exit_success: if (rmrf(argv[i]) == 0) { printf("deleted %s\n", argv[i]); } else { - printf("unable to delete %s\n", argv[i]); + printf("unable to delete %s\n (%s)", argv[i], strerror(errno)); return EXIT_FAILURE; } }