PDA

View Full Version : Code requried to use only first 7 letters of filename when saving attachment



snowbounduk
09-02-2010, 08:39 AM
Hello,

I have some code I am using (This Ron guy is very helpful!) to save attachments from emails sent to me on a weekly basis. The file name always starts MP-0XXX, followed by a date reference or description. The text after MP-0XXX varies depending on who sends it to me. The files are linked to a master microsoft project plan and must have the same file name each week in order for the links to remain.

I need some code to change the filename when it saves it to just the first 7 characters of the recieved file, so the attachment may called "MP-0101 20100827 Deep Dive One" and when it is saved to the destination folder, I need to be called "MP-0101", where it will overwrite the existing file in the folder.

I am a newby to all this and would appreciate any help, I have trawled the net looking for solutions but the ones I have seen are workarounds which do not apply to my case.

Code below, many thanks.

Gordon

Sub SaveAttachments()
'Arg 1 = Folder name in your Inbox
'Arg 2 = File extension, "" is every file
'Arg 3 = Save folder, "C:\Users\Ron\test" or ""
'If you use "" it will create a date/time stamped
'folder for you in the "My Documents" folder.
'Note: If you use this "C:\Users\Ron\test" the folder must exist
SaveEmailAttachmentsToFolder "Plans1", "mpp", "H:\Gordon Reports\Live Project Plans 1"
End Sub
Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As String, _
ExtString As String, DestFolder As String)
Dim ns As NameSpace
Dim Inbox As MAPIFolder
Dim SubFolder As MAPIFolder
Dim Item As Object
Dim Atmt As Attachment
Dim FileName As String
Dim MyDocPath As String
Dim I As Integer
Dim wsh As Object
Dim fs As Object
On Error GoTo ThisMacro_err
Set ns = GetNamespace("MAPI")
Set Inbox = ns.GetDefaultFolder(olFolderInbox)
Set SubFolder = Inbox.Folders(OutlookFolderInInbox)
I = 0
' Check subfolder for messages and exit of none found
If SubFolder.Items.Count = 0 Then
MsgBox "There are no messages in this folder : " & OutlookFolderInInbox, _
vbInformation, "Nothing Found"
Set SubFolder = Nothing
Set Inbox = Nothing
Set ns = Nothing
Exit Sub
End If
'Create DestFolder if DestFolder = ""
If DestFolder = "" Then
Set wsh = CreateObject("WScript.Shell")
Set fs = CreateObject("Scripting.FileSystemObject")
MyDocPath = wsh.SpecialFolders.Item("mydocuments")
DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-ss")
If Not fs.FolderExists(DestFolder) Then
fs.CreateFolder DestFolder
End If
End If
If Right(DestFolder, 1) <> "\" Then
DestFolder = DestFolder & "\"
End If
' Check each message for attachments and extensions
For Each Item In SubFolder.Items
For Each Atmt In Item.Attachments
If LCase(Right(Atmt.FileName, Len(ExtString))) = LCase(ExtString) Then
FileName = DestFolder & Atmt.FileName
Atmt.SaveAsFile FileName
I = I + 1
End If
Next Atmt
Next Item
' Show this message when Finished
If I > 0 Then
MsgBox "You can find the files here : " _
& DestFolder, vbInformation, "Finished!"
Else
MsgBox "No attached files in your mail.", vbInformation, "Finished!"
End If
' Clear memory
ThisMacro_exit:
Set SubFolder = Nothing
Set Inbox = Nothing
Set ns = Nothing
Set fs = Nothing
Set wsh = Nothing
Exit Sub
' Error information
ThisMacro_err:
MsgBox "An unexpected error has occurred." _
& vbCrLf & "Please note and report the following information." _
& vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
& vbCrLf & "Error Number: " & Err.Number _
& vbCrLf & "Error Description: " & Err.Description _
, vbCritical, "Error!"
Resume ThisMacro_exit
End Sub

p45cal
09-02-2010, 08:51 AM
I haven't tested this but you could try:
FileName = DestFolder & Left(Atmt.FileName, 7) & "." & ExtString
instead of
FileName = DestFolder & Atmt.FileName

snowbounduk
09-02-2010, 09:01 AM
That works a treat! An error appears but nothing to do with file names.

Many thanks for your quick reply and help!