Get file info
Leave feedback
On this page
GroupDocs.Comparison allows to get file information which includes:
- FileType - document file type (PDF, Word document, Excel spreadsheet, PowerPoint presentation or image etc.);
- PageCount - count of document pages;
- FileSize - document file size;
- PagesInfo - represents information about page.
The following code samples demonstrate how to get file information.
using (Comparer comparer = new Comparer("source.docx"))
{
IDocumentInfo info = comparer.Source.GetDocumentInfo();
for (int i = 0; i < info.PageCount; i++)
{
Console.WriteLine("\nPage number: {5}\nFile type: {0}\nNumber of pages: {1}\nDocument size: {2} bytes\nWidth: {3}\nHeight: {4} ",
info.FileType, info.PageCount, info.Size, info.PagesInfo[i].Width, info.PagesInfo[i].Height, i + 1);
}
}
using (Comparer comparer = new Comparer(File.OpenRead("source.docx"))
{
IDocumentInfo info = comparer.Source.GetDocumentInfo();
for (int i = 0; i < info.PageCount; i++)
{
Console.WriteLine("\nPage number: {5}\nFile type: {0}\nNumber of pages: {1}\nDocument size: {2} bytes\nWidth: {3}\nHeight: {4} ",
info.FileType, info.PageCount, info.Size, info.PagesInfo[i].Width, info.PagesInfo[i].Height, i + 1);
}
}
To learn more about document comparison features, please refer to the advanced usage section.
You may easily run the code above and see the feature in action in our GitHub examples:
- GroupDocs.Comparison for .NET examples, plugins, and showcase
- GroupDocs.Comparison for Java examples, plugins, and showcase
- Document Comparison for .NET MVC UI Example
- Document Comparison for .NET App WebForms UI Modern Example
- Document Comparison for Java App Dropwizard UI Modern Example
- Document Comparison for Java Spring UI Example
Along with full-featured .NET library we provide simple, but powerful free Apps.
You are welcome to compare your DOC or DOCX, XLS or XLSX, PPT or PPTX, PDF, EML, EMLX, MSG and other documents with free to use online GroupDocs Comparison 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.