c# 读写ini文件
2021-07-16 18:22
//在 Ini 文件中写数据
[DllImport("kernel32")]
private static extern long WritePrivateProfileString(string section, string key, string val, string filePath);
//读取 Ini 文件中的数据
[DllImport("kernel32")]
private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath);
///
/// 创建Ini文件,并写入数据
///
/// 根节点
/// 键
/// 值
/// 路径
public static void WriteIniData(string section, string key, string val, string filePath)
{
if (!File.Exists(filePath))
{
var fs = File.Create(filePath);
fs.Dispose();
fs.Close();
}
WritePrivateProfileString(section, key, val, filePath);
}
///
/// 读取 Ini 文件
///
/// 根节点
/// 键
/// 默认数据
/// 返回数据
/// 大小
/// 路径
public static void ReadIniData(string section, string key, string def, StringBuilder retVal, int size, string filePath)
{
GetPrivateProfileString(section, key, def, retVal, size, filePath);
}