To get a list of all attachments to a source file, follow these steps:
Instantiate the Viewer object. Specify a file that contains attachments.
Call the GetAttachments method. It returns the attachment collection.
Iterate through the collection.
The following code snippet shows how to get a list of attachments from the MSG file:
Note
NOTE: provided code snippet suits all format families that support attachments: emails, Outlook data files, archives, and PDF documents.
usingSystem;usingSystem.Collections.Generic;usingGroupDocs.Viewer;usingGroupDocs.Viewer.Results;// ...using(Viewerviewer=newViewer("sample.msg")){// Get list of attachments.IList<Attachment>attachments=viewer.GetAttachments();// Display list of attachments.Console.WriteLine("\nAttachments:");foreach(Attachmentattachmentinattachments)Console.WriteLine(attachment);}
ImportsSystemImportsSystem.Collections.GenericImportsGroupDocs.ViewerImportsGroupDocs.Viewer.Results' ...
ModuleProgramSubMain(argsAsString())UsingviewerAsViewer=NewViewer("sample.msg")' Get list of attachments.
DimattachmentsAsIList(OfAttachment)=viewer.GetAttachments()' Display list of attachments.
Console.WriteLine(Global.Microsoft.VisualBasic.Constants.vbLf&"Attachments:")ForEachattachmentAsAttachmentInattachmentsConsole.WriteLine(attachment)NextEndUsingEndSubEndModule
The following image shows a sample console output:
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.