We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ae1a91 commit 46ed642Copy full SHA for 46ed642
Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs
@@ -1,4 +1,4 @@
1
-using System;
+using System;
2
using System.Diagnostics;
3
using System.IO;
4
using System.Windows;
@@ -115,7 +115,7 @@ public static void OpenLocationInExporer(string location)
115
var psi = new ProcessStartInfo { FileName = FileExplorerProgramName, UseShellExecute = true, Arguments = location };
116
try
117
{
118
- if (LocationExists(location))
+ if (LocationExists(fileOrFolderPath) || FileExits(fileOrFolderPath))
119
Process.Start(psi);
120
}
121
catch (Exception e)
0 commit comments