How to create the Main folder sud folder in single Create folder action?

How to create the Main folder sud folder in single Create folder action?
I don't think you can do it in a single action (create multiple folders), but if you are just looking to lessen the number of actions to make it more pleasing to the eye, do this:
Create List %Folders% ex. C:, Test, Data, and Final where %Folders[0]% (in this case C:) is the address of the folder that already exists.
Set variable %PreviousFolder% to %Folders[0]%
Loop 1 to %Folders.Count - 1% increment of 1 'we are going to skip 0, because that's actually just where the first folder is being written to.
Create Folder %Folders[LoopIndex]% in %PreviousFolder%
Set %PreviousFolder% to %NewFolder%
End (Loop)
Good luck!