在 WebApi 中获取网页在服务器上的位置可以使用以下两种方式:
string filePath = HostingEnvironment.MapPath(string.Format("/Temp/{0}{1}", DateTime.Now.ToString("yyyyMMddHHmmss"), Guid.NewGuid().ToString("n").Replace("-", "")));string filePath = HttpContext.Current.Server.MapPath(string.Format("/Temp/{0}{1}", DateTime.Now.ToString("yyyyMMddHHmmss"), Guid.NewGuid().ToString("n").Replace("-", "")));
来自: