我有一个托管在内置搜索的 CMS(sharepoint 2013)上的 ASP.NET Web 应用程序。
使用搜索运行文件查询时,文件类型的唯一指示是扩展字符串,格式不带句点"PNG" or "JPG"
我没有取回文件,我只是得到描述文件的元数据。需要明确的是,我没有得到任何 MIME 类型或文件对象,我只是得到一个扩展字符串。
我在网站上四处寻找这样的问题,但我没有看到。
似乎可能有某种方法返回一个字符串,并在其签名中接受一个字符串输入,并搜索某种类型的对象集合,如下所示:
最后结果:
static class FileIcons
{
static public string PDF = string.Format("{0}", SPContext.Current.Site.ServerRelativeUrl + "_layouts/15/monkeysphere/images/icons/pdf.png");
static public string Word = string.Format("{0}", SPContext.Current.Site.ServerRelativeUrl + "_layouts/15/monkeysphere/images/icons/word.png");
static public string Generic = string.Format("{0}", SPContext.Current.Site.ServerRelativeUrl + "_layouts/15/monkeysphere/images/icons/file.png");
static private Dictionary<String, String> IconUrls = new Dictionary<String,String>()
{
{"JPG", Picture},{"JPEG", Picture},{"GIF", Picture},{"PNG", Picture},
{"PDF", PDF},{"DOC", Word},{"DOCX", Word},{"XLS", Excel},{"XLSX", Excel},{"PPT", PowerPoint},{"PPTX", PowerPoint}
};
static public string GetIconUrlFromExtension(string extension)
{
var formattedExtension = extension.Trim().Replace(".","").ToUpper();
if (string.IsNullOrEmpty(extension) || !IconUrls.ContainsKey(formattedExtension))
return Generic;
return IconUrls[formattedExtension];
}
}