Yes, I see your point. However, the focus of this group is to answer
questions relating to programming with the Outlook Object Model using VBA
(although topics relating to CDO, MAPI, and Exchange Development are
pseudo-relevant).
The easiest way to do what you want is to use the Microsoft Scripting
Runtime Library, which has a FileSystemObject that allows you to interact
with the file system. This code snippet is from the Visual Basic Scripting
help file ("C:\Program Files\Microsoft Office\OFFICE11\1033\VBSCRIP5.CHM"),
which has full documentation for the FileSystemObject.
Function CreateFolderDemo
Dim fso, f
Set fso = CreateObject("Scripting.FileSystemObject")
Set f = fso.CreateFolder("c:\New Folder")
CreateFolderDemo = f.Path
End Function