data folder

This commit is contained in:
HojouFotytu 2024-02-05 02:41:59 +09:00
parent 6591350142
commit 39b00b6750
2 changed files with 15 additions and 10 deletions

View File

@ -131,7 +131,12 @@ namespace Core.Main
{
mutex.WaitOne(); // Acquire the mutex
string filePath = "_data/AnalyzerState.";
string dirPath = "_data";
string filePath = Path.Combine(dirPath, "AnalyzerState.");
// Ensure the directory exists
Directory.CreateDirectory(dirPath);
File.WriteAllText(filePath, this.State.ToString());
}

View File

@ -6,7 +6,7 @@ using Core.Helper;
using Microsoft.Extensions.DependencyInjection;
[assembly: AssemblyVersion("2.8.1")]
[assembly: AssemblyVersion("2.8.2")]
[assembly: AssemblyProduct("PT Magic")]
namespace PTMagic