FindExecutable

[DllImport("shell32.dll", CharSet = CharSet.Unicode)]
public static extern uint FindExecutable(
   string lpFile,
   string lpDirectory,
   StringBuilder lpResult
);

Microsoft documentation: Link

Last updated