I haven't used the SA Fileup but you can do it with FSO.
Try the CreateFolder method, like the following code:

Dim fso
Set fso = CreateObject("Scripting.FileSystemObject")
fso.CreateFolder("c:\New Folder")
set fso = Nothing


Jan