Get supported file formats

GroupDocs.Parser allows to get the list of all the supported file formats by the GetSupportedFileTypes static method:

IEnumerable<FileType> FileType.GetSupportedFileTypes();

This method returns a collection of FileType items with the following members:

MemberDescription
FileFormatFile type name e.g. “Microsoft Word Document”.
ExtensionFilename suffix (including the period “.”) e.g. “.doc”.

Also FileType contains static fields that represent all the supported file formats.

Here are the steps to get all the supported file formats:

The following example shows how to print all the supported file types:

IEnumerable<FileType> supportedFileTypes = FileType.GetSupportedFileTypes();

foreach (FileType fileType in supportedFileTypes)
{
    Console.WriteLine(fileType);
}

More resources

Advanced usage topics

To learn more about document data extraction features and get familiar how to extract text, images, forms 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:

Free online document parser App

Along with full featured .NET library we provide simple, but powerful free Apps.

You are welcome to extract data from PDF, DOC, DOCX, PPT, PPTX, XLS, XLSX, Emails and more with our free online Free Online Document Parser App.