Back to Aurora Vision Library Lite website
You are here: Start » All Functions » Process » AvsFilter_Execute_StartOnly
AvsFilter_Execute_StartOnly
This is Filter Equivalent. This function may be present in generated code, but should not be used in hand-written code.
Header: | STD.h |
---|---|
Namespace: | avs |
Executes a system command and returns immediately.
Syntax
void avs::AvsFilter_Execute_StartOnly ( const atl::File& inCommand, const atl::Array<atl::String>& inArguments, const atl::Directory& inWorkingDirectory )
Parameters
Name | Type | Default | Description | |
---|---|---|---|---|
inCommand | const File& | System command to be executed. | ||
inArguments | const Array<String>& | Arguments for the command. | ||
inWorkingDirectory | const Directory& | \".\" | Working directory in which the command will be executed. |
Description
Filter executes a command provided in inCommand with inArguments arguments. The command will be executed in a directory provided in inWorkingDirectory.
Program execution is not blocked: filter does not wait for command completion.
Remarks
Usage of this filter is not recommended in AVL.