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
5
namespace
cosmos {
6
7
void
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
14
void
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
cosmos::BitMask
A typesafe bit mask representation using class enums.
Definition
BitMask.hxx:19
cosmos::DirFD
A specialized FileDescriptor for directory objects.
Definition
DirFD.hxx:17
cosmos::FDFile::close
void close() override
Close the current file object.
Definition
FDFile.hxx:62
cosmos::File::open
void open(const SysString path, const OpenMode mode)
Definition
File.hxx:61
cosmos::OpenMode
OpenMode
Strong enum type wrapper for the basic open() mode flag.
Definition
types.hxx:52
cosmos::SysString
Wrapper type around a C-style string for use with system APIs.
Definition
SysString.hxx:33
src
fs
File.cxx
Generated by
1.12.0