ladybird/Userland/Utilities/touch.cpp

54 lines
1.4 KiB
C++
Raw Normal View History

/*
2021-12-20 19:50:13 +01:00
* Copyright (c) 2018-2021, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCore/ArgsParser.h>
2021-12-20 19:50:13 +01:00
#include <LibCore/System.h>
#include <LibMain/Main.h>
#include <errno.h>
#include <fcntl.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
static bool file_exists(String const& path)
{
struct stat st;
int rc = stat(path.characters(), &st);
if (rc < 0) {
if (errno == ENOENT)
return false;
}
if (rc == 0) {
return true;
}
perror("stat");
exit(1);
}
2021-12-20 19:50:13 +01:00
ErrorOr<int> serenity_main(Main::Arguments arguments)
{
2021-12-20 19:50:13 +01:00
TRY(Core::System::pledge("stdio rpath cpath fattr"));
2020-02-18 13:25:34 +01:00
Vector<String> paths;
Core::ArgsParser args_parser;
args_parser.set_general_help("Create a file, or update its mtime (time of last modification).");
args_parser.add_ignored(nullptr, 'f');
args_parser.add_positional_argument(paths, "Files to touch", "path", Core::ArgsParser::Required::Yes);
2021-12-20 19:50:13 +01:00
args_parser.parse(arguments);
for (auto path : paths) {
if (file_exists(path)) {
2021-12-20 19:50:13 +01:00
if (auto result = Core::System::utime(path, {}); result.is_error())
warnln("{}", result.release_error());
} else {
2021-12-20 19:50:13 +01:00
int fd = TRY(Core::System::open(path, O_CREAT, 0100644));
TRY(Core::System::close(fd));
}
}
return 0;
}