Projects are used to repeat one or more tasks. A Loop can be placed inside a Module, an IF Condition, or another Loop. The following Loops are supported in
Managed File Transfer
:
For Loop - Executes one or more tasks a predetermined number of times.
For-Each Loop - Iterates over a collection of items (File Lists, RowSets, Email Lists, etc.).
While Loop - Executes one or more tasks repeatedly while the Loop condition evaluates to true.
Do-While Loop - Similar to the While Loop, except the Do While Loop will evaluate the condition after each iteration. This Loop is guaranteed to run at least once.