标签:目标 快速 png mit 失败 setpath end 打开文件 应用程序
VClassLib-CS项目Github地址:https://github.com/velscode/VClassLib-CS
VINI文档地址:https://github.com/velscode/VClassLib-CS/blob/master/VINI/VINI_Docs.md
INI文件为程序配置存储的常用格式之一,VINI.cs提供了对INI文件读写操作的支持,可以为您快速搭建需要操作INI文件的应用程序。其操作流程简单,源码基于MIT开源协议,你可以在保留原作者版权申明的条件下自由的复制,修改,再发行。
设定目标config.ini位于exe同目录,其内容为
VINI v = new VINI();
private void button_OpenFile_Click(object sender, EventArgs e)
{
if(true == v.SetPath( textBox_filepath.Text ))
MessageBox.Show("打开成功!");
else
MessageBox.Show("打开失败!");
}
textBox_Value.Text = v.Read( textBox_Section.Text, textBox_Key.Text );
v.Write( textBox_Section.Text, textBox_Key.Text, textBox_Value.Text );
打开文件
读取
写入
标签:目标 快速 png mit 失败 setpath end 打开文件 应用程序
原文地址:https://www.cnblogs.com/velscode/p/10353783.html