summaryrefslogtreecommitdiffstatshomepage
path: root/3rdparty/lzma/CPP/7zip/UI/Common/TempFiles.cpp
blob: 2f868381f9bf14e1f3ed6a2c403729159bb21c2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// TempFiles.cpp

#include "StdAfx.h"

#include "../../../Windows/FileDir.h"

#include "TempFiles.h"

using namespace NWindows;
using namespace NFile;

void CTempFiles::Clear()
{
  while (!Paths.IsEmpty())
  {
    NDir::DeleteFileAlways(Paths.Back());
    Paths.DeleteBack();
  }
}