[Overview][Constants][Types][Classes][Procedures and functions][Variables] | Reference for unit 'sysutils' (#rtl) |
Execute another process (program).
Source position: line 0
function ExecuteProcess( |
const Path: AnsiString; |
const ComLine: AnsiString |
):Integer; |
const Path: AnsiString; |
const ComLine: array of AnsiString |
):Integer; |
ExecuteProcess will execute the program in Path, passing it the arguments in ComLine. ExecuteProcess will then wait for the program to finish, and will return the exit code of the executed program. In case ComLine is a single string, it will be split out in an array of strings, taking into account common whitespace and quote rules.
In case the program could not be executed or an other error occurs, an EOSError exception will be raised.
|
Operating system error. |
No notes exist for this page yet.