[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Execute a command in the current working directory
Source position: process.pp line 178
function RunCommand( |
const exename: string; |
const commands: array of string; |
out outputstring: string; |
Options: TProcessOptions = [] |
):Boolean; |
const cmdline: string; |
out outputstring: string |
):Boolean; |
exename |
|
Binary to start. |
commands |
|
Command-line arguments |
outputstring |
|
String containing the output of the process. |
Options |
|
Options to use when running the command |
True if the function executed succesfully
cmdline |
|
Filename of ninary to start and command-line arguments, separated by whitespace. |
outputstring |
|
String containing the output of the process. |
RunCommand runs RunCommandInDir with an empty current working directory.
The version using CmdLine attempts to split the command line in a binary and separate command-line arguments. This version of the function is deprecated.
|
Run a command in a specific directory. |