blob: c790c29d6dd0c681f028165e1bbfa9c47eedb8a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
// file : cutl/fs/auto-remove.cxx
// copyright : Copyright (c) 2009-2013 Code Synthesis Tools CC
// license : MIT; see accompanying LICENSE file
#include <cstdio> // std::remove
#include <cerrno>
#include <cutl/fs/auto-remove.hxx>
namespace cutl
{
namespace fs
{
auto_remove::
~auto_remove ()
{
if (!canceled_)
{
if (std::remove (path_.string ().c_str ()) == -1)
throw error (errno);
}
}
auto_removes::
~auto_removes ()
{
if (!canceled_)
{
for (paths::iterator i (paths_.begin ()); i != paths_.end (); ++i)
{
if (std::remove (i->string ().c_str ()) == -1)
throw error (errno);
}
}
}
}
}
|