C#访问服务器当前目录路径的表示方法

时间:2021-12-24 04:11:27

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("../")   //返回上一级目录的绝对路径