Hello busy beez

Can anyone rectify this problem... how to create a folder within a folder at the same instruction.. ie:

c:\folder1\folder2

my code so far

Private Sub CreateFolders_Click()
If Dir(Products.text, vbDirectory) = Products.text Then
MsgBox "Already exists"
Else
MkDir "c:\" + Products.text + ??????????
End If
End Sub

Regards