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 a1353d5 commit 7277373Copy full SHA for 7277373
Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs
@@ -112,10 +112,11 @@ public static bool FileExits(this string filePath)
112
113
public static void OpenLocationInExporer(string location)
114
{
115
+ var psi = new ProcessStartInfo { FileName = FileExplorerProgramName, UseShellExecute = true, Arguments = location };
116
try
117
118
if (LocationExists(location))
- Process.Start(FileExplorerProgramName, location);
119
+ Process.Start(psi);
120
}
121
catch (Exception e)
122
0 commit comments