Method ShellExecute
ShellExecute(string, string?, string?)
Uses Process to start the application.
public static bool ShellExecute(string filePath, string? args = null, string? folder = null)
Parameters
filePathstringPath to the application.
argsstringSet of command-line arguments to use when starting the application. See Arguments
folderstringInitial directory. See WorkingDirectory
Returns
- bool
trueif operation is successful;falseotherwise.
Remarks
Uses shell execute to start the process.