summary refs log tree commit diff
path: root/MxApiExtensions/FileStorageProvider.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MxApiExtensions/FileStorageProvider.cs')
-rw-r--r--MxApiExtensions/FileStorageProvider.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MxApiExtensions/FileStorageProvider.cs b/MxApiExtensions/FileStorageProvider.cs

index c2bb267..9ca330a 100644 --- a/MxApiExtensions/FileStorageProvider.cs +++ b/MxApiExtensions/FileStorageProvider.cs
@@ -17,7 +17,7 @@ public class FileStorageProvider : IStorageProvider { new Logger<FileStorageProvider>(new LoggerFactory()).LogInformation("test"); Console.WriteLine($"Initialised FileStorageProvider with path {targetPath}"); TargetPath = targetPath; - if(!Directory.Exists(targetPath)) { + if (!Directory.Exists(targetPath)) { Directory.CreateDirectory(targetPath); } }