[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Run a command in a specific directory.
Source position: process.pp line 176
function RunCommandIndir( |
const curdir: string; |
const exename: string; |
const commands: array of string; |
out outputstring: string; |
out exitstatus: Integer; |
Options: TProcessOptions = [] |
):Integer; |
const curdir: string; |
const exename: string; |
const commands: array of string; |
out outputstring: string; |
Options: TProcessOptions = [] |
):Boolean; |
const curdir: string; |
const cmdline: string; |
out outputstring: string |
):Boolean; |
curdir |
|
Current working directory for the command. |
exename |
|
Executable to start. |
commands |
|
Command-line arguments for the executable. |
outputstring |
|
String to return the commands output. |
exitstatus |
|
On exit, contains the exit status of the process |
Options |
|
Options to use when running the command |
True if the command was started succesfully (or zero in case of an integer return value).
curdir |
|
Current working directory for the command. |
exename |
|
Executable to start. |
commands |
|
Command-line arguments for the executable. |
outputstring |
|
String to return the commands output. |
Options |
|
Options to use when running the command |
curdir |
|
Current working directory for the command. |
cmdline |
|
Filename of binary to start plus command-line arguments separated by whitespace |
outputstring |
|
String to return the commands output. |
RunCommandInDir will execute binary exename with command-line options commands, setting curdir as the current working directory for the command. The Options are taken into consideration (poRunSuspended,poWaitOnExit are removed from the set). The output of the command is captured, and returned in the string OutputString. The function waits for the command to finish, and returns True if the command was started succesfully, False otherwise. In the case where the return value is an integer, it is zero for success, and -1 on error.
If a ExitStatus parameter is specified the exit status of the command is returned in this parameter.
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.
On error, False is returned.
|
Class to start and control other processes. |
|
|
Execute a command in the current working directory |
|
|
Set of TProcessOption. |