I have made a subroutine in Microsoft Outlook VBA to create a csv file which lists all the messages in my inbox and its subfolders. I got the macro to work when just looking at my inbox, but when I tried looping through the subfolders, its returning a "bad file name error" in reference to the file I'm trying to write to. So basically the "Write #ff" lines in the processFolder function are causing an error. Is there something I'm missing about the scope of the file name #ff? Thanks
Sub Response_Log()
Dim myItem As Object
Dim msg As MailItem
Dim myFolder As Folder
Dim mysubfolder As Outlook.Folder
Dim myNamespace As NameSpace
Set myNamespace = Application.GetNamespace("MAPI")
Set myFolder = myNamespace.Folders("My mailbox").Folders("Inbox")
Dim resFile As String
resFile = "myfilepath\Response_Log.csv"
Dim ff As Byte
ff = FreeFile()
Open resFile For Append As #ff
Write #ff, "Sender Name"; "Sender Email Address"; "Received Time"; "Subject"; "Response Status and Response Time"
processFolder myFolder
Close #ff
End Sub
Function processFolder(oParent As Outlook.MAPIFolder)
Dim oFolder As Outlook.MAPIFolder
Dim oMail As Object
Dim Respond As String
Dim NoRespond As String
NoRespond = "Not Yet Replied"
For Each oMail In oParent.Items
If TypeOf oMail Is MailItem Then
If Mid(oMail.SenderEmailAddress, 1, 3) <> "/O=" Then
If oMail.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10810003") = 102 Or oMail.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10810003") = 103 Then
Respond = "Replied on " & oMail.PropertyAccessor.GetProperty("http://schemas.microsoft.com/mapi/proptag/0x10820040")
Write #ff, oMail.SenderName; oMail.SenderEmailAddress; oMail.ReceivedTime; oMail.Subject; Respond
Else
Write #ff, oMail.SenderName; oMail.SenderEmailAddress; oMail.ReceivedTime; oMail.Subject; NoRespond
End If
End If
End If
Next
If (oParent.Folders.Count > 0) Then
For Each oFolder In oParent.Folders
processFolder oFolder
Next
End If
End Function