Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TempFiles.cpp « Common « UI « 7zip « CPP - github.com/kornelski/7z.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c13ae15899247818522375a7aaa4b71a63ed2c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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();
  }
}