What is the location of a file 'config.ini' in C# ?

本文关键字:ini config in is the of file What location | 更新日期: 2023-09-27 17:49:29

下面的代码创建文件"config.ini",其中包含用户在关闭应用程序时使用的值。

        void Form1_FormClosing(object sender,FormClosingEventArgs e)
        {
        IniFile ini=new IniFile(Application.StartupPath+@"''config.ini");

当在Visual Studio 2010 Ultimate中运行应用程序时,文件config.ini将保存在应用程序目录'bin'Debug中。

通过发布,安装和运行应用程序,我找不到文件config.ini。

config.ini文件的位置是什么?

提前感谢,ocaccy

What is the location of a file 'config.ini' in C# ?

应用。StartupPath指向应用程序.exe所在的位置。你的。ini文件应该在那里。

然而,使用。ini文件被认为有点过时,一个更好的方法(在。net中内置)是使用应用程序配置文件(WinForms的app.config)