使用以下代码将照片上传到我的服务器时,我收到了错误的值。这在调试模式下以及在 localhost 中发布时都可以正常工作。
string filePath = Path.Combine(HttpContext.Server.MapPath("../Uploads"), date);
if (!Directory.Exists(HttpContext.Server.MapPath("../Uploads")))
{
Directory.CreateDirectory(HttpContext.Server.MapPath("../Uploads"));
}
file.SaveAs(filePath);
有人可以指出我做错了什么吗?