diff --git a/Il2CppInspector.Redux.FrontendCore/UiContext.cs b/Il2CppInspector.Redux.FrontendCore/UiContext.cs index 3e1764a..30e74f8 100644 --- a/Il2CppInspector.Redux.FrontendCore/UiContext.cs +++ b/Il2CppInspector.Redux.FrontendCore/UiContext.cs @@ -211,6 +211,11 @@ public class UiContext { try { + if (!Directory.Exists(outputDirectory)) + { + Directory.CreateDirectory(outputDirectory); + } + var outputFormat = OutputFormatRegistry.GetOutputFormat(formatId); await outputFormat.Export(model, client, outputDirectory, settings); }