private Dictionary<string, string> fileTypeDic = new Dictionary<string, string>();
protected void InitFileTypeDic()
{
//此处可调用xml,inc,数据库或其他conf操作
fileTypeDic.Add(".exe", "可执行程序");
fileTypeDic.Add(".txt", "文本文件");
}
protected string GetFileTypeName(string endWith)
{
if (fileTypeDic.ContainsKey(endWith.ToLower())) //降序排列后逐一匹配
return fileTypeDic[endWith]; //找到对应后,返回
return "未识别文件类型";
}