Hi all,

I'm trying to run the following code to create a loop of creating multiple folders at once.

This is an example

Code:
 

local dir "C:\Users\"
local d "AA AB"
foreach x in `d'{
mkdir "C:\Users/`d'"
}
This ended up creating one folder named "AA AB", instead of two folders. (I wanted to create two folders, "AA" and "AB")

Any help is appreciated! Thanks!