Action group: Base actions
This action creates an action loop that runs as long as the result of the condition is "True". To add a condition, the expression construction tool is used in the "Condition" parameter. To add a sequence of actions to the loop body, you must move them to the outline of the "Loop body" clause.
Property | Description | Type | Filling example | Mandatory field |
Parameters | ||||
Condition | Condition | Robin.Boolean | true | Yes |
Special conditions of use
Since this boolean expression is evaluated after each loop execution, the "While" loop is executed one or more times.
1.Select the "Do While" action from the "Base actions" action group and transfer it to the script.
2. Fill the loop body with the necessary actions.
Filling example:
3. Set the "Condition" action parameters.
Filling example:
If the condition is filled in using the expression builder tool, it will appear in the "Condition" section inside the loop.
An example of a loop with a postcondition where the condition is filled in using the expression construction tool:
Both loops work as long as the result of the condition is "True". However, in the "While" loop, the action is checked before the loop starts executing, i.e. the loop may run 0 times or more.
The condition check in the "Do While" action takes place after the actions in the loop body are executed, i.e. the loop will run at least once.
There are several subfolders in the folder where the file we need is stored. Look through the subfolders and find out in which of them this file is saved.
1. Create a variable "Counter", variable type - number.
2. Create a variable "Value", variable type - object.
3. Move the "Folder list" (action group "File system"),"Do While" (action group "Base actions") actions to the workspace.
4. Add actions "Get value by index" (action group "Collections"), "Convert data" (action group "Base actions"), "Search file" (action group "File system") and "Addition" (action group "Operators") to the loop body.
Create a variable "Value", variable type - object.
Move the "Folder list" (action group "File system"),"Do While" (action group "Base actions") actions to the workspace.
Set the "Get value by index" action parameter:
The algorithm will loop until the desired file is found. The path to the folder with this file will be saved to the variable "Value".