1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test/webfuse/test_util/tempdir.cc
2020-06-28 20:09:09 +02:00

33 lines
487 B
C++

#include "webfuse/test_util/tempdir.hpp"
#include <unistd.h>
#include <cstdio>
#include <cstdlib>
#include <stdexcept>
namespace webfuse_test
{
TempDir::TempDir(char const * prefix)
{
asprintf(&path_, "/tmp/%s_XXXXXX", prefix);
char * result = mkdtemp(path_);
if (NULL == result)
{
throw std::runtime_error("unable to create temp dir");
}
}
TempDir::~TempDir()
{
rmdir(path_);
free(path_);
}
char const * TempDir::path()
{
return path_;
}
}