随机图像名称图像上传MVC 4

时间:2015-05-17 10:39:31

标签: c# asp.net-mvc asp.net-mvc-4

我希望为我在MVC 4 Web App中上传的图像生成一个随机名称。

我的控制器:

[HttpPost]
[ValidateAntiForgeryToken]
[ValidateInput(false)]
public ActionResult Create(Article article, HttpPostedFileBase file)
{
    if (ModelState.IsValid)
    {
        if (file != null && file.ContentLength > 0)
        {
            // extract only the filename
            var fileName = System.IO.Path.GetFileName(file.FileName);
            // store the file inside ~/App_Data/uploads folder
            var path = System.IO.Path.Combine(Server.MapPath("~/UploadedImages/Articles"), fileName);
            file.SaveAs(path);
            article.ArticleImage = file.FileName;
            ViewBag.Path = String.Format("~/UploadedImages/Events", fileName);
        }
        db.Articles.Add(article);
        db.SaveChanges();
        return RedirectToAction("Index");
    }

    ViewBag.SportID = new SelectList(db.Sports, "SportID", "Name", article.SportID);
    return View(article);
}

我尝试过使用GetRandomFileName方法,但没有运气。不确定这是否是正确的方法。

提前致谢!

2 个答案:

答案 0 :(得分:5)

最简单的方法可能是使用Guid.NewGuid()作为文件名。 它的伪随机性足以用于大多数目的,并且足够独特,可以创建之前创建的Guid的机会非常低。
您需要使用Path的GetExtension方法从原始文件名中提取文件扩展名,对于前面提到的非常低的机会,我建议您编写如下方法:

string GenerateFileName(string TergetPath, HttpPostedFileBase file)
{
    string ReturnValue;
    string extension = Path.GetExtension(file.FileName);
    string FileName = Guid.NewGuid().ToString();
    ReturnValue = FileName + extension;
    if(!File.Exists(Path.Combine(TergetPath, ReturnValue)) 
    {
        return ReturnValue;
    }
    // This part creates a recursive pattern to ensure that you will not overwrite an existing file
    return GenerateFileName(TergetPath, file); 
}

然后你可以从你现有的代码中调用它:

var DirectoryPath = Server.MapPath("~/UploadedImages/Articles");
var path = GenerateFileName(DirectoryPath, file);

答案 1 :(得分:2)

您可以使用Guid.NewGuid()生成随机名称,但这是我在项目中使用的扩展方法:

public static string UploadFile(HttpPostedFileBase file)
        {
            if (file != null)
            {
                var fileName = Path.GetFileName(file.FileName);
                var rondom = Guid.NewGuid() + fileName;
                var path = Path.Combine(HttpContext.Current.Server.MapPath("~/Content/Files/"), rondom);
                if (!Directory.Exists(HttpContext.Current.Server.MapPath("~/Content/Files/")))
                {
                    Directory.CreateDirectory(HttpContext.Current.Server.MapPath("~/Content/Files/"));
                }
                file.SaveAs(path);

                return rondom;
            }
            return "nofile.png";
        }