Context.Server.MapPath("http://www.mamicode.com/") //返回应用程序根目录所在的位置 如 C:\Inetpub\wwwroot\
Context.Server.MapPath("~") //表示当前应用级程序的目录,如果是根目录,,就是根目录,如果是虚拟目录,就是虚拟目录所在的位置 如:C:\Inetpub\wwwroot\Example\ 注:等效于Context.Server.MapPath("~")。
Context.Server.MapPath("./") //返回当前目录绝对路径
Context.Server.MapPath("../") //返回上一级目录的绝对路径