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.
2 parents 9feb266 + f700e9b commit 61d7f04Copy full SHA for 61d7f04
Flow.Launcher.Plugin/SharedCommands/FilesFolders.cs
@@ -121,7 +121,7 @@ public static bool FileExists(this string filePath)
121
122
public static void OpenPath(string fileOrFolderPath)
123
{
124
- var psi = new ProcessStartInfo { FileName = FileExplorerProgramName, UseShellExecute = true, Arguments = fileOrFolderPath };
+ var psi = new ProcessStartInfo { FileName = FileExplorerProgramName, UseShellExecute = true, Arguments = '"' + fileOrFolderPath + '"' };
125
try
126
127
if (LocationExists(fileOrFolderPath) || FileExists(fileOrFolderPath))
0 commit comments