data folder
This commit is contained in:
parent
6591350142
commit
39b00b6750
|
@ -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());
|
||||
|
||||
}
|
||||
|
|
|
@ -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