PSL.Selectfolder - Create new folder

Hello community, 

I'm using PASSOLO automation for exporting bundles.

I'd found the method above to select a folder, but I wonder to create a new folder within this method. Could anyone help me with this? 

[1] Example

Fullscreen
1
2
3
4
5
6
7
8
9
10
Dim ret As Boolean
Dim folder As String
folder = "c:\temp"
ret = PSL.SelectFolder(folder, "Select folder...")
If ret = False Then
MsgBox("Aborted dialog", vbCritical)
Exit Sub
End If
MsgBox("Choosen folder: " + folder)
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX