blob: 56bba9a1f0007c22406cd3614b124262087add19 (
plain)
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();
}
}
|