《程序员的第一年》---------- C# 在非web程序取目录笔记

来源:互联网 发布:招商行情分析软件 编辑:程序博客网 时间:2024/05/17 01:50
        ///// <summary>        ///// 在非web程序取目录        ///// </summary>        ///// <param name="strPath"></param>        ///// <returns></returns>        //private  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);        //    }        //}

原创粉丝点击