
Allows you to name and create a folder in a loop.
Example

Running this code will loop the following code 3 times:
- A 1-second interval is programmed after looping.
 - "#f" is the variable name set for the folder "TEST.csv" saved in "Desktop".
 
loop(3) {
    wait(1)
    set(#f,$plugin function("Data and Files Automation.dll", "$create folder loop name", "{$special folder("Desktop")}\\TEST.csv", "_", 1000, "True"),"Global")
}
	


