diff --git a/PS2_Manager/Core/Util.cs b/PS2_Manager/Core/Util.cs index fb4d1f7..d97352c 100644 --- a/PS2_Manager/Core/Util.cs +++ b/PS2_Manager/Core/Util.cs @@ -31,8 +31,16 @@ public static class Util public static void CheckDir(string path) { - if(!Directory.Exists(path)) + Console.Info("Checking directory: " + path); + if (!Directory.Exists(path)) + { + Console.Error("Directory " + path + " wasn't found, creating now."); Directory.CreateDirectory(path); + } + else + { + Console.Success("Directory was found: " + path); + } } public static string FormatFileSize(long bytes) {