aboutsummaryrefslogtreecommitdiff
path: root/libcutl/fs/auto-remove.cxx
blob: 9aad2420c54a021e30d3989def2d4ecba0c2e855 (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
// file      : libcutl/fs/auto-remove.cxx
// license   : MIT; see accompanying LICENSE file

#include <cstdio> // std::remove
#include <cerrno>

#include <libcutl/fs/auto-remove.hxx>

namespace cutl
{
  namespace fs
  {
    auto_remove::
    ~auto_remove ()
    {
      if (!canceled_)
        std::remove (path_.string ().c_str ()); // Ignore error.
    }

    auto_removes::
    ~auto_removes ()
    {
      if (!canceled_)
      {
        for (paths::iterator i (paths_.begin ()); i != paths_.end (); ++i)
          std::remove (i->string ().c_str ()); // Ignore error.
      }
    }
  }
}