LCL: Improving SelectInFolder implementation on Windows

This commit is contained in:
n7800 2025-02-04 04:45:46 +05:00 committed by Juha Manninen
parent 4ce84e7af4
commit 90b91071fb

View File

@ -357,6 +357,13 @@ function SelectInFolder(AFullPath: String): Boolean;
begin
Result := FileExists(AFullPath) or DirectoryExists(AFullPath);
if Result then
ExecuteProcess('explorer.exe', '/select,' + AFullPath);
try
// quotes are required even in the absence of spaces
// the comma at the end "/select," is required
// do not check the return code
ExecuteProcess('explorer.exe', '/select,"' + AFullPath + '"');
except
Result := False;
end;
end;