[Overview][Types][Classes][Procedures and functions][Variables][Index] |
Convert a command-line to a list of command options
Source position: process.pp line 167
procedure CommandToList( |
S: string; |
List: TStrings |
); |
S |
|
String to split up |
List |
|
List of command-line arguments, one per item |
CommandToList splits the string S in command-line arguments that are returned, one per item, in the List stringlist. Command-line arguments are separated by whitespace (space, tab, CR and LF characters). If an argument needs to contain a space character, it can be surrounded in quote characters (single or double quotes).
There is currently no way to specify a quote character inside a quoted argument.
|
Command-line to execute (deprecated) |