2#include <cosmos/error/UsageError.hxx>
3#include <cosmos/fs/TempDir.hxx>
4#include <cosmos/fs/path.hxx>
5#include <cosmos/private/cosmos.hxx>
12 }
catch (
const std::exception &e) {
13 noncritical_error(
"Failed to close TmpDir", e);
17void TempDir::create(
const SysString _template) {
19 m_tmp_path = fs::make_tempdir(fs::normalize_path(_template));
23 if (!m_tmp_path.empty())
26 cosmos_throw (
UsageError(
"accessed path for closed TempDir"));
const std::string & path() const
Returns the expanded path to the temporary dir.
Exception type for logical usage errors within the application.