The path of the file.
<batch>
batch.name.file
Read Only
array
Returns an array containing all the files specified for a batch or include element. Array starts at index 0.
The following code demonstrates how to store the path of the first script in batch file into 'parameters.firstScriptPath'
<batch main>
/ file = "script1.iqjs"
/ file = "script2.iqjs"
/ onScriptBegin = {
parameters.firstScriptPath = batch.main.file[0];
}
</batch>