2#include <cosmos/error/FileError.hxx>
3#include <cosmos/formatting.hxx>
4#include <cosmos/fs/Directory.hxx>
5#include <cosmos/fs/filesystem.hxx>
6#include <cosmos/private/cosmos.hxx>
10Directory::~Directory() {
11 const auto orig_fd = m_fd.
raw();
14 }
catch (
const std::exception &e) {
15 noncritical_error(sprintf(
"%s: failed to close fd(%d)", __FUNCTION__, to_integral(orig_fd)), e);
22 flags.
set(OpenFlag::DIRECTORY);
23 auto fd = fs::open(path, mode, flags, {});
29 flags.
set(OpenFlag::DIRECTORY);
31 auto fd = fs::open_at(dir_fd, path, mode, flags, {});
A typesafe bit mask representation using class enums.
BitMask & set(const All)
Sets all bits it the set.
A specialized FileDescriptor for directory objects.
void open(const SysString path, const OpenMode mode=OpenMode::READ_ONLY)
Open a directory by path without special flags (close-on-exec will be set).
void close()
Close the current dir object.
FileNum raw() const
Returns the primitive file descriptor contained in the object.
OpenMode
Strong enum type wrapper for the basic open() mode flag.
Wrapper type around a C-style string for use with system APIs.