C# INI文件操作
发布日期:2021-06-28 18:27:51 浏览次数:2 分类:技术文章

本文共 2120 字,大约阅读时间需要 7 分钟。

INI文件操作

class INIFileHelper    {
public string path; public INIFileHelper(string INIPath) {
if (ExistINIFile(INIPath)) path = INIPath; } [DllImport("kernel32")] private static extern long WritePrivateProfileString(string section, string key, string val, string filePath); [DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string def, StringBuilder retVal, int size, string filePath); [DllImport("kernel32")] private static extern int GetPrivateProfileString(string section, string key, string defVal, Byte[] retVal, int size, string filePath); /// /// 验证文件是否存在 /// ///
布尔值
public bool ExistINIFile(string strPath) {
return File.Exists(strPath); } /// /// 写INI文件 /// /// /// /// public void IniWriteValue(string Section, string Key, string Value) {
WritePrivateProfileString(Section, Key, Value, this.path); } /// /// 读取INI文件 /// /// /// ///
public string IniReadValue(string Section, string Key) {
StringBuilder temp = new StringBuilder(255); int i = GetPrivateProfileString(Section, Key, "", temp, 255, this.path); return temp.ToString(); } public byte[] IniReadValues(string section, string key) {
byte[] temp = new byte[255]; int i = GetPrivateProfileString(section, key, "", temp, 255, this.path); return temp; } /// /// 删除ini文件下所有段落 /// public void ClearAllSection() {
IniWriteValue(null, null, null); } /// /// 删除ini文件下personal段落下的所有键 /// /// public void ClearSection(string Section) {
IniWriteValue(Section, null, null); } }

调用

INIFileHelper inifilehelper = new INIFileHelper("./set.ini");

转载地址:https://blog.csdn.net/xjjatdna/article/details/104490567 如侵犯您的版权,请留言回复原文章的地址,我们会给您删除此文章,给您带来不便请您谅解!

上一篇:mysql系统获取相关函数
下一篇:C#文件相关操作

发表评论

最新留言

不错!
[***.144.177.141]2024年04月12日 05时08分27秒