The following code sample demonstrates how to extract basic format information from a file.
BasicUsage.GetDocumentInfo
// Constants.InputXlsx is an absolute or relative path to your document. Ex: @"C:\Docs\source.xlsx"using(Metadatametadata=newMetadata(Constants.InputXlsx)){if(metadata.FileFormat!=FileFormat.Unknown){IDocumentInfoinfo=metadata.GetDocumentInfo();Console.WriteLine("File format: {0}",info.FileType.FileFormat);Console.WriteLine("File extension: {0}",info.FileType.Extension);Console.WriteLine("MIME Type: {0}",info.FileType.MimeType);Console.WriteLine("Number of pages: {0}",info.PageCount);Console.WriteLine("Document size: {0} bytes",info.Size);Console.WriteLine("Is document encrypted: {0}",info.IsEncrypted);}}
More resources
Advanced usage topics
To learn more about document watermarking features and get familiar how to manage watermarks and more, please refer to the advanced usage section.
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 view and edit metadata of PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, emails, images and more with our free online Free Online Document Metadata Viewing and Editing 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.