public static string FromFileName(
ReadOnlySpan<char> fileName
)
Public Shared Function FromFileName (
fileName As ReadOnlySpan(Of Char)
) As String
public:
static String^ FromFileName(
ReadOnlySpan<wchar_t> fileName
)
static member FromFileName :
fileName : ReadOnlySpan<char> -> string
If no other Internet Media Type could be found, OctetStream is returned.
Internally a small memory cache is used to retrieve often used Internet Media Types 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.
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
*/