libcosmos
Linux C++ System Programming Library
Loading...
Searching...
No Matches
File.cxx
1// cosmos
2#include <cosmos/fs/filesystem.hxx>
3#include <cosmos/fs/File.hxx>
4
5namespace cosmos {
6
7void File::open(const SysString path, const OpenMode mode, const OpenFlags flags,
8 const std::optional<FileMode> fmode) {
9
10 close();
11 m_fd = fs::open(path, mode, flags, fmode);
12}
13
14void File::open(const DirFD dir_fd, const SysString path, const OpenMode mode, const OpenFlags flags,
15 const std::optional<FileMode> fmode) {
16
17 close();
18 m_fd = fs::open_at(dir_fd, path, mode, flags, fmode);
19}
20
21} // end ns
A typesafe bit mask representation using class enums.
Definition BitMask.hxx:19
A specialized FileDescriptor for directory objects.
Definition DirFD.hxx:17
void close() override
Close the current file object.
Definition FDFile.hxx:62
void open(const SysString path, const OpenMode mode)
Definition File.hxx:61
OpenMode
Strong enum type wrapper for the basic open() mode flag.
Definition types.hxx:52
Wrapper type around a C-style string for use with system APIs.
Definition SysString.hxx:33