MimeString Class
Static class that works on
Strings and offers methods that perform conversions
between Internet Media Type strings ("MIME types") and file names.
Namespace: FolkerKinzel.MimeTypesAssembly: FolkerKinzel.MimeTypes (in FolkerKinzel.MimeTypes.dll) Version: 1.0.0+7dd5ca03f25d4802263abb2083f9c7add2cb51ec
public static class MimeString
Public NotInheritable Class MimeString
public ref class MimeString abstract sealed
[<AbstractClassAttribute>]
[<SealedAttribute>]
type MimeString = class end
- Inheritance
- Object MimeString
Convert a file name into an Internet Media Type and get a file type extension from an
Internet Media Type:
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
*/