Development Merge 2025.10.18 #4
@@ -10,6 +10,10 @@ public class FileLogger : LoggerBase
 | 
				
			|||||||
    public FileLogger(string filePath)
 | 
					    public FileLogger(string filePath)
 | 
				
			||||||
    {
 | 
					    {
 | 
				
			||||||
        FilePath = filePath;
 | 
					        FilePath = filePath;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					        if (Path.GetDirectoryName(filePath) is string directoryPath)
 | 
				
			||||||
 | 
					            Directory.CreateDirectory(directoryPath);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        File.Open(filePath, FileMode.Create).Close();
 | 
					        File.Open(filePath, FileMode.Create).Close();
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user