随机图片名称图片上传MVC 4
本文关键字:MVC 随机 | 更新日期: 2023-09-27 17:49:23
我希望为我在MVC 4 Web应用程序中上传的图像生成一个随机名称。
我的控制器:
[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方法,但没有运气。我不确定这样做是否正确。
提前感谢!
最简单的方法可能是使用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);
您可以使用guide . 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";
}