C#操作ini文件(读、写、删)

using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using System.Text;
using System.Threading.Tasks;

namespace WQ
{
    /// 
    /// 初始化文件
    /// 
    public class iniFile
    {
        //  Windows API 参考手册:http://www.office-cn.net/t/api/index.html?writeprivateprofilestring.htm

        
        
        //  https://learn.microsoft.com/zh-cn/windows/win32/api/winbase/nf-winbase-writeprivateprofilestringa

        /// 
        /// 
        /// 
        /// 节的名称。如果节不存在,则会创建一个。
        /// 键的名称。如果指定节中不存在该键,则会创建它。如果此参数为null,则会删除整个节(包括该节中的所有条目)。
        /// 要写入文件的字符串。如果此参数为null,则删除lpKeyName参数指向的键。
        /// 初始化文件的名称。
        /// 如果函数成功,则返回值为非零。如果函数失败,则返回值为零。
        [DllImport("kernel32.dll")]
        private static extern int WritePrivateProfileStringA(string lpAppName, string lpKeyName, string lpString, string lpFileName);



        //  https://learn.microsoft.com/en-us/windows/win32/api/winbase/nf-winbase-getprivateprofilestring

        /// 
        /// 
        /// 
        /// 节的名称。如果此参数为null,则会将文件中所有节的名称复制到提供的缓冲区中。
        /// 键的名称。如果此参数为null,则会将lpAppName中所有键的名称复制到提供的缓冲区中。
        /// 默认字符串。如果在初始化文件中找不到lpKeyName,则会将默认字符串复制到提供的缓冲区中。如果此参数为null,则默认为空字符串""。
        /// 缓冲区。
        /// 缓冲区的大小,以字符为单位。
        /// 初始化文件的名称。
        /// 返回值是复制到缓冲区的字符数。
        [DllImport("kernel32.dll")]
        private static extern uint GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, StringBuilder lpReturnedString, int nSize, string lpFileName);

        [DllImport("kernel32.dll")]
        private static extern uint GetPrivateProfileString(string lpAppName, string lpKeyName, string lpDefault, byte[] lpReturnedString, int nSize, string lpFileName);





        /// 
        /// 写。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 节
        /// 键
        /// 值
        /// true表示写入成功,false表示写入失败。
        public static bool Write(string filePath, string section, string key, string value)
        {
            int val = WritePrivateProfileStringA(section, key, value, filePath);

            if (val != 0)
                return true;
            else
                return false;
        }

        /// 
        /// 删除指定的键。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 节
        /// 键
        /// true表示删除成功,false表示删除失败。
        public static bool DeleteKey(string filePath, string section, string key)
        {
            int val = WritePrivateProfileStringA(section, key, null, filePath);

            if (val != 0)
                return true;
            else
                return false;
        }

        /// 
        /// 删除指定的节。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 节
        /// true表示删除成功,false表示删除失败。
        public static bool DeleteSection(string filePath, string section)
        {
            var val = WritePrivateProfileStringA(section, null, null, filePath);

            if (val != 0)
                return true;
            else
                return false;
        }

        /// 
        /// 读值。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 节
        /// 键
        /// 
        public static string ReadValue(string filePath, string section, string key)
        {
            StringBuilder sb = new StringBuilder(1024);
            var charLength = GetPrivateProfileString(section, key, "", sb, sb.Capacity, filePath);
            return sb.ToString();
        }

        /// 
        /// 读出指定节中所有的键。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 节
        /// 指定节中所有的键。
        public static List ReadKey(string filePath, string section)
        {
            List keys = new List();
            byte[] buf = new byte[2000];
            var charLength = GetPrivateProfileString(section, null, "", buf, buf.Length, filePath);

            int j = 0;
            for (int i = 0; i < charLength; i++)
            {
                if (buf[i] == 0)
                {
                    keys.Add(Encoding.Default.GetString(buf, j, i - j));
                    j = i + 1;
                }
            }

            return keys;
        }

        /// 
        /// 读出文件中所有的节。
        /// 
        /// ini文件的路径。示例:H:\学习\C#\示例\Demo.ini
        /// 文件中所有的节。
        public static List ReadSection(string filePath)
        {
            List keys = new List();
            byte[] buf = new byte[2000];
            var charLength = GetPrivateProfileString(null, null, "", buf, buf.Length, filePath);

            int j = 0;
            for (int i = 0; i < charLength; i++)
            {
                if (buf[i] == 0)
                {
                    keys.Add(Encoding.Default.GetString(buf, j, i - j));
                    j = i + 1;
                }
            }

            return keys;
        }

    }
}

你可能感兴趣的:(C#,c#,wpf)