Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rm.c « coreutils - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dc35b0297ea095ebb904d2288aef4c571d73d067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include "internal.h"
#include <errno.h>

const char	rm_usage[] = "rm [-r] file [file ...]\n"
"\n"
"\tDelete files.\n"
"\n"
"\t-r:\tRecursively remove files and directories.\n";

extern int
rm_main(struct FileInfo * i, int argc, char * * argv)
{
	i->processDirectoriesAfterTheirContents = 1;
	return monadic_main(i, argc, argv);
}

extern int
rm_fn(const struct FileInfo * i)
{
	if ( i->recursive
	 && !i->isSymbolicLink
	 && (i->stat.st_mode & S_IFMT) == S_IFDIR )
		return rmdir_fn(i);
	else if ( unlink(i->source) != 0 && errno != ENOENT && !i->force ) {
		name_and_error(i->source);
		return 1;
	}
	else
		return 0;
}