MimeStringToFileTypeExtension(String, Boolean) Method

Converts an Internet Media Type to an appropriate file type extension.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public static string ToFileTypeExtension(
	string? mimeType,
	bool includePeriod = true
)

Parameters

mimeType  String
A String that represents an Internet Media Type ("MIME type") or null.
includePeriod  Boolean  (Optional)
true specifies, that the period "." (U+002E) is included in the retrieved file type extension, false, that it's not.

Return Value

String
An appropriate file type extension for mimeType.

Remarks

If no other file type extension can be found, DefaultFileTypeExtension is returned. includePeriod specifies whether the period is included.

This method doesn't perform any validation on mimeType. If a strong validation of the input is needed, the instance methods MimeTypeInfo.GetFileTypeExtension(bool) and MimeType.GetFileTypeExtension(bool) are better suited.

Internally a small memory cache is used to retrieve often used file type extensions faster. You can enlarge the size of this cache with MimeCache.EnlargeCapacity(int) or you can delete it with MimeCache.Clear() if your application does not need it anymore.

Example

Convert a file name into an Internet Media Type and get a file type extension from an Internet Media Type:

C#
using FolkerKinzel.MimeTypes;

namespace Examples;

public static class FileExtensionExample
{
    public static void Example()
    {
        const string path = @"C:\Users\Tester\Desktop\Interesting Text.odt";

        string mimeType = MimeString.FromFileName(path);

        Console.Write($"The MIME type for \"{path}\" is: ");
        Console.WriteLine(mimeType);
        Console.Write("The file type extension for this MIME type is: ");
        Console.WriteLine(MimeString.ToFileTypeExtension(mimeType));
    }
}
/*
Console Output:

The MIME type for "C:\Users\Tester\Desktop\Interesting Text.odt" is: application/vnd.oasis.opendocument.text
The file type extension for this MIME type is: .odt
 */

See Also