From d86f0e78fb478311922e1b39fba1af092cd0b2f8 Mon Sep 17 00:00:00 2001 From: ryanm2711 Date: Mon, 16 Mar 2026 04:13:17 +0000 Subject: [PATCH] Fixed directories not deleting if items exist inside. --- CodeWalker/ExploreForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CodeWalker/ExploreForm.cs b/CodeWalker/ExploreForm.cs index 593ec4e97..33c8f5095 100644 --- a/CodeWalker/ExploreForm.cs +++ b/CodeWalker/ExploreForm.cs @@ -3379,7 +3379,7 @@ private void DeleteItem(MainListItem item) //delete an item in the filesystem. if ((item.Folder != null) && (item.Folder.RpfFile == null)) { - Directory.Delete(item.FullPath); + Directory.Delete(item.FullPath, true); } else {