public string ContructOrganizationNameLogo(HttpPostedFileBase upload, string OrganizationName, int OrganizationID,string LangName)
{
var UploadedfileName = Path.GetFileName(upload.FileName);
string type = upload.ContentType;
}
我想获取文件的扩展名以动态生成文件的名称。我将用于分割类型的一种方式。但我可以使用HttpPostedFileBase对象以干净的方式获取扩展名吗?
答案 0 :(得分:127)
像这样:
string extension = Path.GetExtension(upload.FileName);
这将包括一个领先的.
。
请注意,您不应该认为扩展名是正确的。