public string ContructOrganizationNameLogo(HttpPostedFileBase upload, string OrganizationName, int OrganizationID,string LangName)
{
var UploadedfileName = Path.GetFileName(upload.FileName);
string type = upload.ContentType;
}
ファイルの拡張子を取得して、ファイルの名前を動的に生成したい。タイプを分割するために使用する1つの方法。しかし、HttpPostedFileBaseオブジェクトを使用して拡張機能をクリーンな方法で取得できますか?
このような:
string extension = Path.GetExtension(upload.FileName);
これには、先頭の.
。
拡張子が正しいと仮定しないでください。