MimeTypeGetFileTypeExtension Method

Gets an appropriate file type extension.

Definition

Namespace: FolkerKinzel.MimeTypes
Assembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
C#
public string GetFileTypeExtension(
	bool includePeriod = true
)

Parameters

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.

Remarks

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

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.

See Also