简体   繁体   English

为什么 AppDomain.CurrentDomain.BaseDirectory 在 asp.net 应用程序中不包含“bin”?

[英]Why AppDomain.CurrentDomain.BaseDirectory not contains "bin" in asp.net app?

I have a web project like:我有一个网络项目,如:

namespace Web
{
    public partial class _Default : System.Web.UI.Page
    {
        protected void Page_Load(object sender, EventArgs e)
        {
            lbResult.Text = PathTest.GetBasePath();
        }
    }
}

The method PathTest.GetBasePath() is defined in another Project like: PathTest.GetBasePath()方法在另一个项目中定义,如:

namespace TestProject
{
    public class PathTest
    {
        public static string GetBasePath() 
        {
            return AppDomain.CurrentDomain.BaseDirectory;
        }
    }
}

Why it's display ...\\Web\\ while the TestProject assembly is compiled into bin folder(in other words it should display ...\\Web\\bin in my thought).为什么它显示...\\Web\\而 TestProject 程序集编译到bin文件夹中(换句话说,它应该在我的想法中显示...\\Web\\bin )。

Now I got a troublesome if I modified method into:现在,如果我将方法修改为:

namespace TestProject
{
    public class FileReader
    {
        private const string m_filePath = @"\File.config";
        public static string Read() 
        {
            FileStream fs = null;
            fs = new FileStream(AppDomain.CurrentDomain.BaseDirectory + m_filePath,FileMode.Open, FileAccess.Read);
            StreamReader reader = new StreamReader(fs);
            return reader.ReadToEnd();
        }
    }
}

The File.config is created in TestProject. File.config在 TestProject 中创建。 Now AppDomain.CurrentDomain.BaseDirectory + m_filePath will returen ..\\Web\\File.config (actually the file was be copied into ..\\Web\\bin\\File.config ), an exception will be thrown.现在AppDomain.CurrentDomain.BaseDirectory + m_filePath将返回..\\Web\\File.config (实际上是将文件复制到..\\Web\\bin\\File.config ),会抛出异常。

You could say that I should modified m_filePath to @"\\bin\\File.config" .你可以说我应该将m_filePath修改为@"\\bin\\File.config" However If I use this method in a Console app in your suggest, AppDomain.CurrentDomain.BaseDirectory + m_filePath will return ..\\Console\\bin\\Debug\\bin\\File.config (actually the file was copyed into .\\Console\\bin\\Debug\\File.config ), an exception will be thrown due to surplus bin .但是,如果我在您建议的控制台应用程序中使用此方法, AppDomain.CurrentDomain.BaseDirectory + m_filePath将返回..\\Console\\bin\\Debug\\bin\\File.config (实际上该文件已..\\Console\\bin\\Debug\\bin\\File.config.\\Console\\bin\\Debug\\File.config ),因为bin多余会抛出异常。

In other words, in web app, AppDomain.CurrentDomain.BaseDirectory is a different path where file be copyed into (lack of /bin ), but in console app it's the same one path.换句话说,在 Web 应用程序中, AppDomain.CurrentDomain.BaseDirectory是将文件复制到的不同路径(缺少/bin ),但在控制台应用程序中它是相同的路径。
Any one can help me?任何人都可以帮助我吗?

Per MSDN, an App Domain "Represents an application domain, which is an isolated environment where applications execute."根据 MSDN,应用程序域“代表应用程序域,它是应用程序执行的隔离环境。” When you think about an ASP.Net application the root where the app resides is not the bin folder.当您考虑 ASP.Net 应用程序时,应用程序所在的根目录不是 bin 文件夹。 It is totally possible, and in some cases reasonable, to have no files in your bin folder, and possibly no bin folder at all.在您的 bin 文件夹中没有文件是完全可能的,并且在某些情况下是合理的,并且可能根本没有 bin 文件夹。 Since AppDomain.CurrentDomain refers to the same object regardless of whether you call the code from code behind or from a dll in the bin folder you will end up with the root path to the web site.由于 AppDomain.CurrentDomain 指的是同一个对象,无论您是从后面的代码还是从 bin 文件夹中的 dll 调用代码,您最终都会得到网站的根路径。

When I've written code designed to run under both asp.net and windows apps usually I create a property that looks something like this:当我编写了在 asp.net 和 windows 应用程序下运行的代码时,通常我会创建一个如下所示的属性:

public static string GetBasePath()          
{       
    if(System.Web.HttpContext.Current == null) return AppDomain.CurrentDomain.BaseDirectory; 
    else return Path.Combine(AppDomain.CurrentDomain.BaseDirectory,"bin");
} 

Another (untested) option would be to use:另一个(未经测试的)选项是使用:

public static string GetBasePath()          
{       
    return System.Reflection.Assembly.GetExecutingAssembly().Location;
} 

In case you want a solution that works for WinForms and Web Apps如果您想要一个适用于 WinForms 和 Web Apps 的解决方案

    public string ApplicationPath
    {
        get
        {
            if (String.IsNullOrEmpty(AppDomain.CurrentDomain.RelativeSearchPath))
            {
                return AppDomain.CurrentDomain.BaseDirectory; //exe folder for WinForms, Consoles, Windows Services
            }
            else
            {
                return AppDomain.CurrentDomain.RelativeSearchPath; //bin folder for Web Apps 
            }
        }
    }

Above solution code snippet is for binaries locations以上解决方案代码片段适用于二进制文件位置

The AppDomain.CurrentDomain.BaseDirectory is still valid path for Web Apps, it's just a root folder where the web.config and Global.asax and is same as Server.MapPath(@"~\\"); AppDomain.CurrentDomain.BaseDirectory仍然是 Web Apps 的有效路径,它只是web.configGlobal.asax所在的根文件夹,与Server.MapPath(@"~\\");

如果您使用AppDomain.CurrentDomain.SetupInformation.PrivateBinPath而不是BaseDirectory ,那么您应该获得正确的路径。

When ASP.net builds your site it outputs build assemblies in its special place for them.当 ASP.net 构建您的站点时,它会在其特殊位置为它们输出构建程序集。 So getting path in that way is strange.所以以这种方式获得路径很奇怪。

For asp.net hosted applications you can use:对于 asp.net 托管应用程序,您可以使用:

string path = HttpContext.Current.Server.MapPath("~/App_Data/somedata.xml");

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

相关问题 为什么 AppDomain.CurrentDomain.BaseDirectory 在控制台应用程序中定位 bin catelog? - Why is AppDomain.CurrentDomain.BaseDirectory targeting bin catelog in console application? AppDomain.CurrentDomain.BaseDirectory会根据应用程序的目标平台进行更改 - AppDomain.CurrentDomain.BaseDirectory changes according to the app's target platform AppDomain.CurrentDomain.BaseDirectory 更改为错误的目录 - AppDomain.CurrentDomain.BaseDirectory changes to wrong directory 如何模拟AppDomain.CurrentDomain.BaseDirectory - How to mock AppDomain.CurrentDomain.BaseDirectory AppDomain.CurrentDomain.BaseDirectory运行测试后会发生变化吗? - AppDomain.CurrentDomain.BaseDirectory changes after running test? C#Uri AppDomain.CurrentDomain.BaseDirectory相对路径 - C# Uri AppDomain.CurrentDomain.BaseDirectory relative path 运行MVC项目时AppDomain.CurrentDomain.BaseDirectory路径问题 - AppDomain.CurrentDomain.BaseDirectory path issue when running MVC project 我应该使用 AppDomain.CurrentDomain.BaseDirectory 还是 System.Environment.CurrentDirectory? - Should I use AppDomain.CurrentDomain.BaseDirectory or System.Environment.CurrentDirectory? 如何通过在 c# 中使用 AppDomain.CurrentDomain.BaseDirectory 在文件夹路径中上一步 - How to go one step above in a folder path by using AppDomain.CurrentDomain.BaseDirectory in c# AppDomain.CurrentDomain.BaseDirectory和Application.ExecutablePath在实践中有什么区别? - What's the difference between AppDomain.CurrentDomain.BaseDirectory and Application.ExecutablePath in practice?
 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM