mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
42 lines
991 B
C#
42 lines
991 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Wabbajack.Common
|
|
{
|
|
public class TempFolder : IDisposable
|
|
{
|
|
public AbsolutePath Dir { get; }
|
|
public bool DeleteAfter = true;
|
|
|
|
public TempFolder(bool deleteAfter = true)
|
|
{
|
|
Dir = new AbsolutePath(Path.Combine(Path.GetTempPath(), Path.GetRandomFileName()));
|
|
if (!Dir.Exists)
|
|
Dir.CreateDirectory();
|
|
DeleteAfter = deleteAfter;
|
|
}
|
|
|
|
public TempFolder(AbsolutePath dir, bool deleteAfter = true)
|
|
{
|
|
Dir = dir;
|
|
if (!dir.Exists)
|
|
{
|
|
Dir.Create();
|
|
}
|
|
DeleteAfter = deleteAfter;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
if (DeleteAfter && Dir.Exists)
|
|
{
|
|
Utils.DeleteDirectory(Dir).Wait();
|
|
}
|
|
}
|
|
}
|
|
}
|