mirror of
https://github.com/Xevion/easy7zip.git
synced 2025-12-06 09:14:58 -06:00
20 lines
282 B
C++
Executable File
20 lines
282 B
C++
Executable File
// 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();
|
|
}
|
|
}
|