Extract metadata from Microsoft Office Word documents
Extract metadata from Microsoft Office Word documents
Leave feedback
To extract metadata from Microsoft Office Word documents GetMetadata method is used. This method allows to extract the following metadata:
Name
Description
title
The title of the document.
subject
The subject of the document.
keywords
The keyword of the document.
comments
The comments of the document.
content-status
The content status of the document.
category
The category of the document.
company
The company of the document.
manager
The manager of the document.
author
The name of the document’s author.
last-author
The name of the last document’s author.
hyperlink-base
The base string used for evaluating relative hyperlinks in this document.
application
The name of the application.
application-version
The version number of the application that created the document.
template
The informational name of the document template.
created-time
The time of the document creation.
last-saved-time
The time of the the document when it was last saved.
last-printed-time
The time of the document when it was last printed.
revision-number
The document revision number.
total-editing-time
The total editing time in minutes.
Here are the steps to extract metadata from Microsoft Office Word document:
Instantiate Parser object for the initial document;
Call GetMetadata method and obtain collection of document metadata objects;
Iterate through the collection and get metadata names and values.
Warning
GetMetadata method returns null value if metadata extraction isn’t supported for the document. For example, metadata extraction isn’t supported for Zip archive. Therefore, for Zip archive GetMetadata method returns null. If Microsoft Office Word document has no metadata, GetMetadata method returns an empty collection.
The following example demonstrates how to extract metadata from Microsoft Office Word document:
// Create an instance of Parser classusing(Parserparser=newParser(filePath)){// Extract metadata from the documentIEnumerable<MetadataItem>metadata=parser.GetMetadata();// Iterate over metadata itemsforeach(MetadataItemiteminmetadata){// Print the item name and valueConsole.WriteLine(string.Format("{0}: {1}",item.Name,item.Value));}}
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.