Check if collection isn’t null (container extraction is supported for the document);
Iterate through the collection and get container item names, sizes and obtain content.
The following example shows how to extract attachments from a container:
// Create an instance of Parser classusing(Parserparser=newParser(filePath)){// Extract attachments from the containerIEnumerable<ContainerItem>attachments=parser.GetContainer();// Check if container extraction is supportedif(attachments==null){Console.WriteLine("Container extraction isn't supported");}// Iterate over attachmentsforeach(ContainerItemiteminattachments){// Print an item name and sizeConsole.WriteLine(string.Format("{0}: {1}",item.Name,item.Size));}}
Container represents both container-only files (like zip archives, outlook storage) and documents with attachments (like emails, PDF Portfolios).
In case of outlook storage (ost/pst files) container consists of email documents (msg files)
More resources
GitHub examples
You may easily run the code above and see the feature in action in our GitHub examples:
Along with full featured .NET library we provide simple, but powerful free Apps.
You are welcome to parse documents and extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Parser App.
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.