欢迎来到银龙的博客

人生三从境界:昨夜西风凋碧树,独上高楼,望尽天涯路。 衣带渐宽终不悔,为伊消得人憔悴。 众里寻他千百度,蓦然回首,那人却在灯火阑珊处。

ABPmvc5服务层获取网站目录

命令

AppDomain.CurrentDomain.BaseDirectory

测试

using System;
using System.Web.Mvc;
using Abp.Web.Mvc.Authorization;
using Castle.Core.Logging;

namespace YinLongWebSite.Web.Controllers
{
    [AbpMvcAuthorize]
    public class HomeController : YinLongWebSiteControllerBase
    {
       
        public ActionResult Index()
        {
            Logger.Debug(AppDomain.CurrentDomain.BaseDirectory);
            return View();
        }
    }
}

输出

DEBUG 2020-07-18 10:54:02,506 [7    ] ngWebSite.Web.Controllers.HomeController - D:\IIS网站\Publish\

 

posted on 2020-07-18 10:57  银龙科技  阅读(268)  评论(0编辑  收藏  举报

导航