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

发布于 2024-09-03 11:45:14 字数 361 浏览 7 评论 0原文

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

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

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

I want to get the extension of the file to dynamically generate the name of the file.One way i will use to split the type. but can i use HttpPostedFileBase object to get the extension in the clean way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不美如何 2024-09-10 11:45:14

像这样:

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

这将包括一个前导 .

请注意,您不应假设扩展名是正确的。

Like this:

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

This will include a leading ..

Note that the you should not assume that the extension is correct.

笑红尘 2024-09-10 11:45:14
string extension = Path.GetExtension(formFile.FileName);
string fileName = Path.GetFileNameWithoutExtension(formFile.FileName);

fileName = Path.Combine(path, Path.GetRandomFileName() + fileName + extension);

using (FileStream fs = File.Create(Path.Combine(PathConstants.RootPath, fileName)))
{
    await formFile.CopyToAsync(fs);
}
return fileName;
string extension = Path.GetExtension(formFile.FileName);
string fileName = Path.GetFileNameWithoutExtension(formFile.FileName);

fileName = Path.Combine(path, Path.GetRandomFileName() + fileName + extension);

using (FileStream fs = File.Create(Path.Combine(PathConstants.RootPath, fileName)))
{
    await formFile.CopyToAsync(fs);
}
return fileName;
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文