From 4efaa648ad1aed9864490ba15035fdb3b86a12fd Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Thu, 20 Apr 2023 23:20:07 +0800 Subject: [PATCH] Use shell execute to fix Files App support --- Flow.Launcher/PublicAPIInstance.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Flow.Launcher/PublicAPIInstance.cs b/Flow.Launcher/PublicAPIInstance.cs index ec997f537..ee40f6e0b 100644 --- a/Flow.Launcher/PublicAPIInstance.cs +++ b/Flow.Launcher/PublicAPIInstance.cs @@ -202,6 +202,7 @@ namespace Flow.Launcher explorer.StartInfo = new ProcessStartInfo { FileName = explorerInfo.Path, + UseShellExecute = true, Arguments = FileNameOrFilePath is null ? explorerInfo.DirectoryArgument.Replace("%d", DirectoryPath) : explorerInfo.FileArgument