You are probably looking for something like this :
Filefolder = "Some Folder"
Set objInbox = objNameSpace.GetDefaultFolder(olFolderInbox)
Set objMailbox = objInbox.Parent 'This object is the whole mailbox
Set objFileFolder = objMailbox.Folders(Filefolder)
The trick is to use the parent and...