mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
39 lines
763 B
C#
39 lines
763 B
C#
namespace Bit.Core.Test;
|
|
|
|
public class TempDirectory : IDisposable
|
|
{
|
|
public string Directory { get; private set; }
|
|
|
|
public TempDirectory()
|
|
{
|
|
Directory = Path.Combine(Path.GetTempPath(), $"bitwarden_{Guid.NewGuid().ToString().Replace("-", "")}");
|
|
}
|
|
|
|
public override string ToString() => Directory;
|
|
|
|
#region IDisposable implementation
|
|
~TempDirectory()
|
|
{
|
|
Dispose(false);
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
Dispose(true);
|
|
GC.SuppressFinalize(this);
|
|
}
|
|
|
|
public void Dispose(bool disposing)
|
|
{
|
|
if (disposing)
|
|
{
|
|
try
|
|
{
|
|
System.IO.Directory.Delete(Directory, true);
|
|
}
|
|
catch { }
|
|
}
|
|
}
|
|
# endregion
|
|
}
|