Development Merge 2025.10.18 #4

Merged
Syntriax merged 91 commits from development into main 2025-10-18 10:03:13 +02:00
Showing only changes of commit 33cb44bf36 - Show all commits

View File

@@ -10,6 +10,10 @@ public class FileLogger : LoggerBase
public FileLogger(string filePath)
{
FilePath = filePath;
if (Path.GetDirectoryName(filePath) is string directoryPath)
Directory.CreateDirectory(directoryPath);
File.Open(filePath, FileMode.Create).Close();
}