我想将从asp mvc页面上传的图像保存到content / img /文件夹中,该文件夹与我的网站在IIS中运行的位置有关。但我不想将我的文件系统上的位置硬编码为绝对路径,因为这可能很容易改变。这是我用来保存它们的代码。
public static string SaveCompanyLogoImage(HttpPostedFileBase file)
{
var newFileName = GetNewCompanyLogoFileName(file.FileName);
file.FileName = newFileName;
file.SaveAs(//relative-location-here);
return Path.GetFileNameWithoutExtension(last);
}
希望这能解释我的问题!
感谢您的帮助
答案 0 :(得分:0)
使用Server.MapPath(“〜/ MyImagesFolder”)
http://msdn.microsoft.com/es-es/library/system.web.httpserverutility.mappath.aspx