Open the immediate window of the VBA editor (Ctrl+G)
Then add the following to a module
Code:
Sub GetFolderNames()
Dim olStore As Outlook.Store
Dim olFolder As Folder
For Each olStore In Session.Stores
Debug.Print olStore.DisplayName
For Each olFolder In olStore.GetRootFolder.folders
Debug.Print vbTab & vbTab & olFolder.Name
Next olFolder
Next olStore
End Sub
Run the macro then copy and paste the contents of the Immediate window to your next reply. Hopefully falecomrobson is one of the listed folders, from which it should be easy enough to derive the required subfolder