写一个操作 .ini文件的类
class inihelp
{
private string 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);
public inihelp(string inipath)
{
this.inipath = inipath;
}
public inihelp()
{
}
public void setfilepath(string filepath)
{
this.inipath = filepath;
}
public void iniwrite(string section,string key,string val)
{
writeprivateprofilestring(section,key,val,inipath);
}
public string inireadvalue(string section,string key)
{
stringbuilder temp=new stringbuilder(500);
int i=getprivateprofilestring(section,key,"",temp,500,inipath);
return temp.tostring();
}
public bool existinifile()
{
return file.exists(inipath);
}
}
上一篇: 人参怎么泡水?有什么禁忌?
推荐阅读
-
Python 从一个文件中调用另一个文件的类方法
-
python写xml文件的操作实例
-
PHP操作文件类的函数代码(文件和文件夹创建,复制,移动和删除)
-
linux 可执行文件与写操作的同步问题(文件读写操作产生的锁机制)
-
使用NumPy和pandas对CSV文件进行写操作的实例
-
c++-面向对象类的示例-求周长面积,判断体积相等-文件操作和一般操作
-
一个基于PDO的数据库操作类
-
一个基于PDO的数据库操作类(新) 一个PDO事务实例
-
C# winfrom 写的一个搜索助手,可以按照标题和内容搜索,支持doc,xls,ppt,pdf,txt等格式的文件搜索
-
Python实现的ini文件操作类分享