40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#include <os/ArgumentParser.h>
|
|
#include <os/FileSystem.h>
|
|
#include <stdio.h>
|
|
#include <sys/stat.h>
|
|
|
|
static const char* file_type(mode_t mode)
|
|
{
|
|
switch (mode & S_IFMT)
|
|
{
|
|
case S_IFREG: return "regular file";
|
|
case S_IFDIR: return "directory";
|
|
case S_IFCHR: return "character special device";
|
|
case S_IFLNK: return "symbolic link";
|
|
default: return "unknown file type";
|
|
}
|
|
}
|
|
|
|
Result<int> luna_main(int argc, char** argv)
|
|
{
|
|
StringView path;
|
|
bool follow_symlinks { false };
|
|
|
|
os::ArgumentParser parser;
|
|
parser.add_description("Display file status.");
|
|
parser.add_system_program_info("stat"_sv);
|
|
parser.add_positional_argument(path, "path", true);
|
|
parser.add_switch_argument(follow_symlinks, 'L', "dereference"_sv, "follow symlinks");
|
|
parser.parse(argc, argv);
|
|
|
|
struct stat st;
|
|
TRY(os::FileSystem::stat(path, st, follow_symlinks));
|
|
|
|
printf(" File: %s\n", path.chars());
|
|
printf(" Size: %zu (%s)\n", st.st_size, file_type(st.st_mode));
|
|
printf("Inode: %lu Links: %lu\n", st.st_ino, st.st_nlink);
|
|
printf(" Mode: %#o UID: %u GID: %u\n", st.st_mode & ~S_IFMT, st.st_uid, st.st_gid);
|
|
|
|
return 0;
|
|
}
|