diff --git a/ShareX.HelpersLib/Helpers/Helpers.cs b/ShareX.HelpersLib/Helpers/Helpers.cs index 3b64874e1..40785e477 100644 --- a/ShareX.HelpersLib/Helpers/Helpers.cs +++ b/ShareX.HelpersLib/Helpers/Helpers.cs @@ -421,6 +421,11 @@ public static bool OpenFolder(string folderPath) { if (!string.IsNullOrEmpty(folderPath) && Directory.Exists(folderPath)) { + if (!folderPath.EndsWith(@"\")) + { + folderPath += @"\"; + } + try { Process.Start(folderPath);