mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
bb9ef89dee
7Zip extracted archives now only extract the fewest files required. Audited the uses of .Wait Lazily init the VFS cleaning
41 lines
1022 B
C#
41 lines
1022 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 : IAsyncDisposable
|
|
{
|
|
public AbsolutePath Dir { get; }
|
|
public bool DeleteAfter = true;
|
|
|
|
public TempFolder(bool deleteAfter = true)
|
|
{
|
|
Dir = Path.Combine("tmp_files", Guid.NewGuid().ToString()).RelativeTo(AbsolutePath.EntryPoint);
|
|
if (!Dir.Exists)
|
|
Dir.CreateDirectory();
|
|
DeleteAfter = deleteAfter;
|
|
}
|
|
|
|
public TempFolder(AbsolutePath dir, bool deleteAfter = true)
|
|
{
|
|
Dir = dir;
|
|
if (!dir.Exists)
|
|
{
|
|
Dir.Create();
|
|
}
|
|
DeleteAfter = deleteAfter;
|
|
}
|
|
public async ValueTask DisposeAsync()
|
|
{
|
|
if (DeleteAfter && Dir.Exists)
|
|
{
|
|
await Utils.DeleteDirectory(Dir);
|
|
}
|
|
}
|
|
}
|
|
}
|