Certainly is,
You need to reference the "Microsoft Scripting Runtime" (under Tools > References) in VBA.
This allows you to create a "FileSystemObject".
For example, to create a folder:
Code:
Dim fso as New FileSystemObject
fso.CreateFolder "C:\My New Folder"
fso.CreateFolder "C:\My New Folder\A Subfolder"
I hope this helps, if you get stuck then give me a shout.
Best Regards,
Rob