1
0
mirror of https://github.com/falk-werner/webfuse synced 2024-10-27 20:34:10 +00:00
falk-werner_webfuse/test-src/webfuse/test/tempdir.cpp

23 lines
308 B
C++
Raw Normal View History

2022-12-30 18:43:45 +00:00
#include "webfuse/test/tempdir.hpp"
#include <unistd.h>
namespace webfuse
{
tempdir::tempdir()
{
char path_template[] = "/tmp/webfuse_test_XXXXXX";
path = mkdtemp(path_template);
}
tempdir::~tempdir()
{
unlink(path.c_str());
}
2022-12-31 19:41:45 +00:00
std::string const & tempdir::name() const
2022-12-30 18:43:45 +00:00
{
return path;
}
}