通常、ASP.NETを使用してアップロードされたファイルのMIMEタイプをどのように検出しますか?
aspxページ:
<asp:FileUpload ID="FileUpload1" runat="server" />
コードビハインド(c#):
string contentType = FileUpload1.PostedFile.ContentType
上記のコードは、ファイルの名前が変更されてアップロードされた場合、正しいコンテンツタイプを提供しません。
そのためにこのコードを使用してください
using System.Runtime.InteropServices;
[DllImport("urlmon.dll", CharSet = CharSet.Unicode, ExactSpelling = true, SetLastError = false)]
static extern int FindMimeFromData(IntPtr pBC,
[MarshalAs(UnmanagedType.LPWStr)] string pwzUrl,
[MarshalAs(UnmanagedType.LPArray, ArraySubType = UnmanagedType.I1, SizeParamIndex = 3)] byte[] pBuffer,
int cbSize,
[MarshalAs(UnmanagedType.LPWStr)] string pwzMimeProposed,
int dwMimeFlags, out IntPtr ppwzMimeOut, int dwReserved);
public static string getMimeFromFile(HttpPostedFile file)
{
IntPtr mimeout;
int MaxContent = (int)file.ContentLength;
if (MaxContent > 4096) MaxContent = 4096;
byte[] buf = new byte[MaxContent];
file.InputStream.Read(buf, 0, MaxContent);
int result = FindMimeFromData(IntPtr.Zero, file.FileName, buf, MaxContent, null, 0, out mimeout, 0);
if (result != 0)
{
Marshal.FreeCoTaskMem(mimeout);
return "";
}
string mime = Marshal.PtrToStringUni(mimeout);
Marshal.FreeCoTaskMem(mimeout);
return mime.ToLower();
}
HTTPリクエストのコンテンツタイプが正しくない可能性があるという点でaneeshは正しいですが、アンマネージドコールのマーシャリングはそれだけの価値があるとは思いません。拡張機能からMIMEタイプへのマッピングにフォールバックする必要がある場合は、System.Web.MimeMapping.cctorからコードを「借用」するだけです(Reflectorを使用)。この辞書アプローチは十分すぎるほどであり、ネイティブ呼び出しを必要としません。