C# 操作INI文件

本文介绍了如何使用C#进行INI文件的操作,包括读取和写入。示例展示了如何处理含有注释和键值对的INI文件,如 '[log] logpath=c:log'。代码中提到,INI文件的第一行应为空行,否则可能无法正确读取。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

C# 操作INI文件

INI文件格式如下:
;注释
[section]
key=value
例如:
;我的INI文件
[log]
logpath=c:\log

操作INI文件的可以通过调用API函数来实现
具体代码如下:

using System;
using System.Collections.Generic;
using System.Text;
using System.IO;
using System.Runtime.InteropServices;


namespace XRayCollectLog
{
    class ReadIniFile
    {
        //声明写INI文件的API函数
        [DllImport("kernel32")]
        private static extern long WritePrivateProfileString(string sectio
c#.net完美读取及设置INI文件 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace yjjk { public partial class setfdbs : Form { public setfdbs() { InitializeComponent(); } private void setfdbs_Load(object sender, EventArgs e) { string Current; Current = Directory.GetCurrentDirectory();//获取当前根目录 Console.WriteLine("Current directory {0}", Current); Ini ini = new Ini(Current + "/config.ini"); // 读取ini string fdbs = ini.ReadValue("Setting", "fdbs"); string fdname = ini.ReadValue("Setting", "fdname"); tbfdbs.Text = fdbs; tbfdname.Text = fdname; } private void button1_Click(object sender, EventArgs e) { string fdbs, fdname; fdbs = Common.ChkTextInput(tbfdbs.Text.ToString()); fdname = Common.ChkTextInput(tbfdname.Text.ToString()); string Current; Current = Directory.GetCurrentDirectory();//获取当前根目录 Console.WriteLine("Current directory {0}", Current); // 写入ini try { Ini ini = new Ini(Current + "/config.ini"); ini.Writue("Setting", "fdbs", fdbs); ini.Writue("Setting", "fdname", fdname); MessageBox.Show(" 保存成功!!", "提示"); main.fdbs123 = fdbs; this.Close(); } catch { MessageBox.Show(" 配置错误!!", "提示"); } } private void button2_Click(object sender, EventArgs e) { this.Close(); } private void tbfdbs_DoubleClick(object sender, EventArgs e) { selfd selfd = new selfd(); selfd.getstr += new selfd.GetString(selfd_getstr); selfd.ShowDialog(); } void selfd_getstr(string fd, string fdname) { tbfdbs.Text = fd; tbfdname.Text = fdname; } } }
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值