mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
47 lines
1.3 KiB
C#
47 lines
1.3 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using AlphaPath = Alphaleonis.Win32.Filesystem.Path;
|
|
|
|
namespace Wabbajack.Common
|
|
{
|
|
public class TempFile : IAsyncDisposable
|
|
{
|
|
public FileInfo File { get; private set; }
|
|
public AbsolutePath Path => (AbsolutePath)File.FullName;
|
|
public bool DeleteAfter = true;
|
|
|
|
public TempFile(bool deleteAfter = true, bool createFolder = true)
|
|
: this(new FileInfo((string)GetTempFilePath()))
|
|
{
|
|
}
|
|
|
|
private static AbsolutePath GetTempFilePath()
|
|
{
|
|
var path = (@"temp\" + Guid.NewGuid()).RelativeTo(AbsolutePath.EntryPoint).WithExtension(Consts.TempExtension);
|
|
path.Parent.CreateDirectory();
|
|
return path;
|
|
}
|
|
|
|
public TempFile(FileInfo file, bool deleteAfter = true, bool createFolder = true)
|
|
{
|
|
this.File = file;
|
|
if (createFolder && !file.Directory.Exists)
|
|
{
|
|
file.Directory.Create();
|
|
}
|
|
this.DeleteAfter = deleteAfter;
|
|
}
|
|
public async ValueTask DisposeAsync()
|
|
{
|
|
if (DeleteAfter)
|
|
{
|
|
await Path.DeleteAsync();
|
|
}
|
|
}
|
|
}
|
|
}
|