mirror of
https://github.com/LukeFZ/Il2CppInspectorRedux.git
synced 2026-03-22 00:18:18 +05:00
create output directory if it doesn't exist in redux uis
This commit is contained in:
@@ -211,6 +211,11 @@ public class UiContext
|
|||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
if (!Directory.Exists(outputDirectory))
|
||||||
|
{
|
||||||
|
Directory.CreateDirectory(outputDirectory);
|
||||||
|
}
|
||||||
|
|
||||||
var outputFormat = OutputFormatRegistry.GetOutputFormat(formatId);
|
var outputFormat = OutputFormatRegistry.GetOutputFormat(formatId);
|
||||||
await outputFormat.Export(model, client, outputDirectory, settings);
|
await outputFormat.Export(model, client, outputDirectory, settings);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user