C#之配置文件Ini

简介: C#之配置文件Ini

1、IniConfig类


class IniConfig
    {
        public string path="./log.ini";             //INI文件名 
        //声明写INI文件的API函数
        [DllImport("kernel32", CharSet = CharSet.Unicode)]
        private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
        //声明读INI文件的API函数
        [DllImport("kernel32", CharSet = CharSet.Unicode)]
        private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
        //类的构造函数,传递INI文件的路径和文件名
        //public IniConfig(string INIPath)
        //{
        //    path = INIPath;
        //}
        //写INI文件
        public void IniWriteValue(string Section, string Key, string Value)
        {
            if (!File.Exists(path))
            {
                //File.Create(path);
                FileStream fs = new FileStream(path, FileMode.CreateNew);
                fs.Close();
            }
            WritePrivateProfileString(Section, Key, Value, path);
        }
        //读取INI文件
        public string IniReadValue(string Section, string Key)
        {
            if (!File.Exists(path))
            {
                return "";
            }
            StringBuilder temp = new StringBuilder(4096);
            int i = GetPrivateProfileString(Section, Key, "", temp, 4096, path);
            return temp.ToString();
        }
    }

其中注意两点:


如果软件只有一个ini文件,那么IniConfig里面的path可以设置为固定的路径,如果炫耀读取不同的ini文件,则使用注释掉的public IniConfig(string INIPath)的。实例化的时候加上路径即可IniConfig logini = new IniConfig("logs.ini");

在写操作时,如果没有该ini配置文件应该创建一个再写,若使用File.Create(path);创建之后不能立马写入,所以使用FileStream fs = new FileStream(path, FileMode.CreateNew);fs.Close();创建ini文件。

2、读取ini


IniConfig iniConfig_log = new IniConfig();
string imgs_dir = iniConfig_log.IniReadValue("objectTest", "imgDir");
if (!String.IsNullOrEmpty(imgs_dir) & Directory.Exists(imgs_dir))
{
    Console.WriteLine(imgs_dir);
}

3、写入ini


string onnx_path = "C:/Users/deploy.onnx";
iniConfig_log.IniWriteValue("objectTest", "onnxPath", onnx_path);

示例的ini文件内容如下:


去.png



 


相关文章
|
6月前
|
XML 开发框架 .NET
C#/ASP.NET应用程序配置文件app.config/web.config的增、删、改操作
C#/ASP.NET应用程序配置文件app.config/web.config的增、删、改操作
71 1
|
6月前
|
C# 数据库 数据库管理
C#使用Poco链接SQLite数据库配置文件和错误的解决
C#使用Poco链接SQLite数据库配置文件和错误的解决
69 1
|
数据库连接 C# 数据库
C#数据库连接配置文件存放至App.Config
将C#数据库连接配置文件存放到外置的App.config文件中,并且演示vs和Rider如何读取配置文件连接数据库
165 0
|
XML C# 数据格式
【C#编程最佳实践 四】XML配置文件编写与读取实践
【C#编程最佳实践 四】XML配置文件编写与读取实践
239 0
|
监控 JavaScript 应用服务中间件
C# WinForm 开发配置文件更新/EXE应用启动及监控检测工具
使用C# WinForm 开发快速更新配置文件切换环境以及启动外部EXE应用并进行监控的windows桌面EXE应用
|
XML C# 数据格式
C#应用程序配置文件
C#应用程序配置文件
119 0
C#应用程序配置文件
|
XML C# 数据格式
c#读取配置文件,C#读xml配置文件,c# 配置文件,C# 读取xml
c#读取配置文件,C#读xml配置文件,c# 配置文件,C# 读取xml
648 0
|
C#
C# 不重启程序修改并保存配置文件(appSettings节点)
原文:C# 不重启程序修改并保存配置文件(appSettings节点) private static void UpdateAppConfig(string newKey, string newValue) { bool isModified = false; foreach (string key in ConfigurationManager.
1659 0