转:Server.MapPath相关

如果你从Page类继承的类中执行这条语句,才可以简单地使用 
DataBase = Server.MapPath("data.mdb");
否则写全命名空间:System.Web.HttpContext.Current.Server.MapPath();

总注:Server.MapPath获得的路径都是服务器上的物理路径,也就是常说的绝对路径
1、Server.MapPath("/")
注:获得应用程序根目录所在的位置,如 C:\Inetpub\wwwroot\。
2、Server.MapPath("./")
注:获得所在页面的当前目录,等价于Server.MapPath("")。
3、Server.MapPath("../")
注:获得所在页面的上级目录。
4、Server.MapPath("~/")
注:获得当前应用级程序的目录,如果是根目录,就是根目录,如果是虚拟目录,就是虚拟目录所在的位置,如C:\Inetpub\wwwroot\Example\。

在多线程里面使用HttpContext.Current,HttpContext.Current是得到null的. 
所以在线程调用方法,方法中类里面的System.Web.HttpContext.Current.Server.MapPath() 获取不到对象。

应该这样用:

public static string MapPath(string strPath)
    {
        if (HttpContext.Current != null)
        {
            return HttpContext.Current.Server.MapPath(strPath);
        }
        else //非web程序引用 
        {
            strPath = strPath.Replace("/", "\\");
            if (strPath.StartsWith("\\"))
            {
                //strPath = strPath.Substring(strPath.IndexOf(‘\\‘, 1)).TrimStart(‘\\‘); 
                strPath = strPath.TrimStart(‘\\‘);
            }
            return System.IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, strPath);
        }
    }

http://blog.csdn.net/lego2816/article/details/6781677

时间: 2024-10-05 04:19:25

转:Server.MapPath相关的相关文章

Server.MapPath()目录详解

最近在做相关的开发,碰到了Server.MapPath(),顺便来温习一下 Server.MapPath()获取网站的目录详解 ./当前目录 /网站主目录 ../上层目录 ~/网站虚拟目录 如果当前的网站目录为E:\www123,应用程序虚拟目录为E:\www123\wlj ,浏览的页面路径为E:\www123\wlj\haha\heihei.asp. 例子:在heihei.asp页面中的具体使用如下 Server.MapPath("./")   返回路径为:E:\www123\wlj

Server.MapPath()

./当前目录/网站主目录../上层目录~/网站虚拟目录如果当前的网站目录为E:\wwwroot   应用程序虚拟目录为E:\wwwroot\company 浏览的页面路径为E:\wwwroot\company\news\show.asp在show.asp页面中使用Server.MapPath("./")   返回路径为:E:\wwwroot\company\newsServer.MapPath("/")    返回路径为:E:\wwwrootServer.MapPa

Server.MapPath查询路径那几件事

主要总结Server.MapPath 这个方法的使用以及使用的场景,不是什么时候都适合使用: 1.实现功能: Server.MapPath能够获取指定URL相对服务器的物理路径,在IIS服务端,能够根据文件名来获取该文件的物理路径: 2.存在命令空间: System.Web.HttpContext.Current.Server.MapPath 以及System.web.MVC.Control.Server.Mapth; 3.使用情况: 既然是System.Web.HttpContent 也及时表

asp中Server.MapPath的使用方法

老是忘记Server.MapPath的使用方法了,下面记录一下,以备后用: 总注:Server.MapPath获得的路径都是服务器上的物理路径,也就是常说的绝对路径 1.Server.MapPath("/") 注:获得应用程序根目录所在的位置,如 C:\Inetpub\wwwroot\. 2.Server.MapPath("./") 注:获得所在页面的当前目录,等价于Server.MapPath(""). 3.Server.MapPath(&qu

asp.net server.mappath使用

1.Server.MapPath("/") 应用程序根目录所在的位置 如 C:\Inetpub\wwwroot\ 2.Server.MapPath("./") 表示所在页面的当前目录 注:等价于Server.MapPath("") 返回 Server.MapPath("") 所在页面的物理文件路径 3.Server.MapPath("../")表示上一级目录 4.Server.MapPath("~

asp于Server.MapPath用法

总是忘记Server.MapPath的用法,以下记录了,以后使用: 总注:Server.MapPath获得的路径都是server上的物理路径,也就是常说的绝对路径 1.Server.MapPath("/") 注:获得应用程序根文件夹所在的位置.如 C:\Inetpub\wwwroot\. 2.Server.MapPath("./") 注:获得所在页面的当前文件夹,等价于Server.MapPath(""). 3.Server.MapPath(&q

Server.mappath用法

1.Server.MapPath ("/") 应用程序根目录所在的位置 如 C:\qq\qqroot\ 2.Server.MapPath ("./") 表示所在页面的当前目录 注:等价于Server.MapPath ("") 返回 Server.MapPath ("")所在页面的物理文件路径 3.Server.MapPath ("../")表示上一级目录 4.Server.MapPath ("~/

Server.MapPath 的使用方法

用法: 1.Server.MapPath ("/") 应用程序根目录所在的位置 如 C:\Inetpub\wwwroot\ 2.Server.MapPath ("./") 表示所在页面的当前目录 注:等价于Server.MapPath ("") 返回 Server.MapPath ("")所在页面的物理文件路径 3.Server.MapPath ("../")表示上一级目录 4.Server.MapPath

浅谈Server.MapPath和Request.PhysicalApplicationPath

很多人对它们都不陌生,在众多的WEB程序中,使用Server.MapPath和Request.PhysicalApplicationPath来操作目录/文件的几率参半,我曾经也经常混用,然而时间久了.发现Request.PhysicalApplicationPath有点“麻烦”?其实在一般的应用程序中,感觉不到两者的区别,而在一些存在“虚拟目录”.存在多级子目录.需要虚拟目录相互文件操作的站点中,就可以知道它们的区别了.我的总结如下: 1.相对当前路径的文件操作: 可以使用Server.MapP