MimeTypeFromFileName(String) Method

Creates an appropriate MimeType instance for a given file name.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public static MimeType FromFileName(
	string? fileName
)

Parameters

fileName  String
A file path, file name, file type extension (no matter whether with or without the period "."), or null.

Return Value

MimeType
An appropriate MimeType instance for fileName.

Remarks

Internally a small memory cache is used to find 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.

See Also