Detect MIME type from files.
This repo will help keep alive this old library with minimal support.
You should consider using the new one: Mime-Detective.
Nuget: SrkMimeDetective
// Both ways are writing the data to a temp file
// to get a FileInfo. GetFileType are extension methods
byte[] fileData = ...;
FileType fileType = fileData.GetFileType();
// or
Stream fileDataStream = ...;
FileType fileType = fileDataStream.GetFileType();
// If writing to a temp file is not practicable use it like this
byte[] fileData = ...;
FileType fileType = MimeTypes.GetFileType(() => fileData);
- https://filetypedetective.codeplex.com/ by trailmax, nuget
FileTypeDetective
, MIT - https://github.com/Muraad/Mime-Detective, as GPL, changed to MIT
- https://github.com/clarkis117/Mime-Detective.git, nuget
MimeDetective
- https://github.com/sandrock/Mime-Detective, nuget
SrkMimeDetective