mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
73fdbba59c
This was a workaround to be able to build on case-insensitive file systems where it might get confused about <string.h> vs <String.h>. Let's just not support building that way, so String.h can have an objectively nicer name. :^)
68 lines
1.7 KiB
C++
68 lines
1.7 KiB
C++
#include <AK/String.h>
|
|
#include <AK/StringBuilder.h>
|
|
#include <AK/Vector.h>
|
|
#include <LibCore/CArgsParser.h>
|
|
#include <LibCore/CDirIterator.h>
|
|
#include <dirent.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <sys/stat.h>
|
|
#include <unistd.h>
|
|
|
|
int remove(bool recursive, const char* path)
|
|
{
|
|
struct stat path_stat;
|
|
int s = stat(path, &path_stat);
|
|
if (s < 0) {
|
|
perror("stat");
|
|
return 1;
|
|
}
|
|
|
|
if (S_ISDIR(path_stat.st_mode) && recursive) {
|
|
DIR* derp = opendir(path);
|
|
if (!derp) {
|
|
return 1;
|
|
}
|
|
|
|
while (auto* de = readdir(derp)) {
|
|
if (strcmp(de->d_name, ".") != 0 && strcmp(de->d_name, "..") != 0) {
|
|
StringBuilder builder;
|
|
builder.append(path);
|
|
builder.append('/');
|
|
builder.append(de->d_name);
|
|
int s = remove(true, builder.to_string().characters());
|
|
if (s < 0)
|
|
return s;
|
|
}
|
|
}
|
|
int s = rmdir(path);
|
|
if (s < 0) {
|
|
perror("rmdir");
|
|
return 1;
|
|
}
|
|
} else {
|
|
int rc = unlink(path);
|
|
if (rc < 0) {
|
|
perror("unlink");
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
CArgsParser args_parser("rm");
|
|
args_parser.add_arg("r", "Delete directory recursively.");
|
|
args_parser.add_required_single_value("path");
|
|
|
|
CArgsParserResult args = args_parser.parse(argc, argv);
|
|
Vector<String> values = args.get_single_values();
|
|
if (values.size() == 0) {
|
|
args_parser.print_usage();
|
|
return 1;
|
|
}
|
|
|
|
return remove(args.is_present("r"), values[0].characters());
|
|
}
|