轉:Server.MapPath相關

來源:互聯網
上載者:User

標籤:blog   http   io   使用   ar   sp   art   on   c   

如果你從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

 

轉:Server.MapPath相關

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.