aboutsummaryrefslogtreecommitdiff
path: root/cutl/fs/auto-remove.cxx
blob: ac957c05e3fd77e3aaf7e0e1bb3ec8fe31f15062 (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
// file      : cutl/fs/auto-remove.cxx
// copyright : Copyright (c) 2009-2019 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_)
        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.
      }
    }
  }
}