data folder
This commit is contained in:
parent
6591350142
commit
39b00b6750
|
@ -126,12 +126,17 @@ namespace Core.Main
|
|||
}
|
||||
}
|
||||
public void WriteStateToFile()
|
||||
{
|
||||
{
|
||||
try
|
||||
{
|
||||
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());
|
||||
|
||||
}
|
||||
|
@ -139,7 +144,7 @@ namespace Core.Main
|
|||
{
|
||||
mutex.ReleaseMutex(); // Release the mutex even if exceptions occur
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public int RunCount
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue