当前位置:  开发笔记 > 编程语言 > 正文

如何从ASP.NET MVC中的Controller构造函数中找到文件夹的路径?

如何解决《如何从ASP.NETMVC中的Controller构造函数中找到文件夹的路径?》经验,为你挑选了2个好方法。

我试图获取我的网站根目录中的文件夹的路径,并在调用我的控制器构造函数时将其保存到类属性:

public TestController:Controller{
    string temp;

    public TestController(){
        temp = "";
        }

    }

我尝试过以下方法:

temp = Server.MapPath("~/TheFolder/"); // Server is null - error.
temp = Request.PhysicalApplicationPath + @"TheFolder\"; // Request is null - error.

有任何想法吗?



1> liammclennan..:

AppDomain.CurrentDomain.BaseDirectory将为您提供站点的根目录.所以:

temp = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "TheFolder");

(感谢Marc Gravell的评论)



2> Marc Gravell..:

在构造函数中你真的需要这个路径吗?如果您在主页循环开始之前不需要它,请考虑推迟它 - 只需使用常规属性; 就像是

public string BasePath {
    get { return Server.MapPath("~/TheFolder/"); }
}

然后,当在页面循环期间使用它时,它应该没问题.如果你真的想要,你可以缓存它,但我不认为这将成为一个瓶颈:

private string basePath;
public string BasePath {
    get {
        if(basePath == null) basePath = Server.MapPath("~/TheFolder/");
        return basePath;
    }
}

推荐阅读
和谐啄木鸟
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有