diff --git a/Nebula.Shared/Services/FileService.cs b/Nebula.Shared/Services/FileService.cs index bcc9404..5a6d85e 100644 --- a/Nebula.Shared/Services/FileService.cs +++ b/Nebula.Shared/Services/FileService.cs @@ -22,6 +22,10 @@ public class FileService public FileService(DebugService debugService) { _debugService = debugService; + + if(!Directory.Exists(RootPath)) + Directory.CreateDirectory(RootPath); + ContentFileApi = CreateFileApi("content"); EngineFileApi = CreateFileApi("engine"); ManifestFileApi = CreateFileApi("manifest");