From c4d5143ff9db80e34265ca06b375442b6c987390 Mon Sep 17 00:00:00 2001 From: MayNL Date: Mon, 29 Jun 2026 11:44:59 -0400 Subject: [PATCH] Fix for Import Folder not working recursively --- PCK-Studio/Controls/Editor/PckEditor.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Controls/Editor/PckEditor.cs b/PCK-Studio/Controls/Editor/PckEditor.cs index d4959e61..75ef19a5 100644 --- a/PCK-Studio/Controls/Editor/PckEditor.cs +++ b/PCK-Studio/Controls/Editor/PckEditor.cs @@ -1596,7 +1596,7 @@ namespace PckStudio.Controls return; } - string[] filesImported = Directory.GetFiles(contents.ResultPath); + string[] filesImported = Directory.GetFiles(contents.ResultPath, "*.*", SearchOption.AllDirectories); IEnumerable files = filesImported.Where(File.Exists); IEnumerable directoryFiles = filesImported