asp.net mvc获取HttpPostedFileBase文件扩展名

时间:2010-05-28 13:46:30

标签: asp.net-mvc file-extension

public string ContructOrganizationNameLogo(HttpPostedFileBase upload, string OrganizationName, int OrganizationID,string LangName)
    {
         var UploadedfileName = Path.GetFileName(upload.FileName);
        string type = upload.ContentType;
    }

我想获取文件的扩展名以动态生成文件的名称。我将用于分割类型的一种方式。但我可以使用HttpPostedFileBase对象以干净的方式获取扩展名吗?

1 个答案:

答案 0 :(得分:127)

像这样:

string extension = Path.GetExtension(upload.FileName);

这将包括一个领先的.

请注意,您不应该认为扩展名是正确的。