在C#ASP.Net中,如何转换:
来自:http://example.com/foo/bar.html 收件人:C:\ WebServerRoot \ foo \ bar.html
答案 0 :(得分:3)
考虑到“example.com”是运行ASP.NET应用程序的Web服务器,以下代码返回文件的本地(物理)路径:
var server = HttpContext.Current.Server;
string filePath = server.MapPath("/foo/bar.html");