libcosmos
Linux C++ System Programming Library
|
Creation and lifetime management for temporary directories. More...
#include <TempDir.hxx>
Public Member Functions | |
TempDir (const SysString _template) | |
TempDir (const TempDir &)=delete | |
TempDir & | operator= (const TempDir &)=delete |
TempDir (TempDir &&other) noexcept | |
TempDir & | operator= (TempDir &&other) noexcept |
void | close () |
void | create (const SysString _template) |
const std::string & | path () const |
Returns the expanded path to the temporary dir. | |
Protected Attributes | |
std::string | m_tmp_path |
Creation and lifetime management for temporary directories.
Create a temporary directory based on a name template. See fs::make_tempdir() for details on the template requirements.
Upon close() the temporary directory will be recursively removed.
Definition at line 15 of file TempDir.hxx.
|
inlineexplicit |
Definition at line 20 of file TempDir.hxx.
cosmos::TempDir::~TempDir | ( | ) |
Definition at line 9 of file TempDir.cxx.
|
inlinenoexcept |
Definition at line 30 of file TempDir.hxx.
|
inline |
Definition at line 40 of file TempDir.hxx.
void cosmos::TempDir::create | ( | const SysString | _template | ) |
Definition at line 17 of file TempDir.cxx.
Definition at line 34 of file TempDir.hxx.
const std::string & cosmos::TempDir::path | ( | ) | const |
Returns the expanded path to the temporary dir.
This is only valid if currently a temporary file is open. Otherwise a UsageError will be thrown.
Definition at line 22 of file TempDir.cxx.
|
protected |
Definition at line 58 of file TempDir.hxx.