我正在使用urlmon来查找文件的MIME,但是当我无法获得正确的css文件和更多SWF的mime时,它并没有顺利。我可以使用什么来获取文件mime?
答案 0 :(得分:1)
嗯,我不确定我是否完全理解你的问题,但是如果你想查看一个主列表,你可以查看IIS Metabase
using (DirectoryEntry directory = new DirectoryEntry("IIS://Localhost/MimeMap")) {
PropertyValueCollection mimeMap = directory.Properties["MimeMap"];
foreach (object Value in mimeMap) {
IISOle.MimeMap mimetype = (IISOle.MimeMap)Value;
//use mimetype.Extension and mimetype.MimeType to determine
//if it matches the type you are looking for
}
}