如何判断app.config文件是否存在

发布于 2024-10-21 13:01:46 字数 254 浏览 3 评论 0原文

有没有办法在不使用“File.Exists”的情况下找出 app.config 文件是否存在? 我尝试过

if ( !ConfigurationManager.ConnectionStrings.ElementInformation.IsPresent )
{...}

,但即使存在带有连接字符串的 app.config,IsPresent 也是 false。

编辑: 我是否误解了 IsPresent 属性?

Is there a way to find out whether an app.config file exists, without using "File.Exists"?
I tried

if ( !ConfigurationManager.ConnectionStrings.ElementInformation.IsPresent )
{...}

but IsPresent is false even if app.config with a connection string exists.

Edit:
Did I misinterpret the IsPresent Property?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

笑看君怀她人 2024-10-28 13:01:46

AppDomain 报告它期望应用程序的配置文件所在的位置。您可以测试该文件是否确实存在(不需要虚拟 AppSettings,也不需要尝试找出配置文件应该被调用什么,或者它位于哪里):

public static bool CheckConfigFileIsPresent()
{
   return File.Exists(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
}

The AppDomain reports on where it expects the configuration file for the application to reside. You can test if the file actually exists (with no need for dummy AppSettings, and no need to try and work out what the configuration file should be called, or where it is located):

public static bool CheckConfigFileIsPresent()
{
   return File.Exists(AppDomain.CurrentDomain.SetupInformation.ConfigurationFile);
}
皇甫轩 2024-10-28 13:01:46

您可以在静态类中创建方法

public static class ConfigurationManagerHelper
{
    public static bool Exists()
    {
        return Exists(System.Reflection.Assembly.GetEntryAssembly());
    }

    public static bool Exists(Assembly assembly)
    {
        return System.IO.File.Exists(assembly.Location + ".config" )
    }
}

,然后在您想要的地方使用

ConfigurationManagerHelper.Exists();  // or pass assembly

You can create method in static class

public static class ConfigurationManagerHelper
{
    public static bool Exists()
    {
        return Exists(System.Reflection.Assembly.GetEntryAssembly());
    }

    public static bool Exists(Assembly assembly)
    {
        return System.IO.File.Exists(assembly.Location + ".config" )
    }
}

And then use where you want

ConfigurationManagerHelper.Exists();  // or pass assembly
天冷不及心凉 2024-10-28 13:01:46

我能想到的最简单的方法是添加一些“虚拟”应用程序设置标志,然后检查该标志,例如:

if (string.IsNullOrEmpty(ConfigurationManager.AppSettings["dummyflag"]))
{
  //config file doesn't exist..
}

Most simple way that I can think of is to add some "dummy" application setting flag then check for that flag, e.g.:

if (string.IsNullOrEmpty(ConfigurationManager.AppSettings["dummyflag"]))
{
  //config file doesn't exist..
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文