0306数据备份整理-【配置文件】C#代码

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

namespace BackUp
{
    public class IniFile
    {

        ////声明读写INI文件的API函数
        [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 string Path;
       
        //构造函数 初始化配置类
        public IniFile(string inipath)
        {
            Path = inipath;
        }

        //写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();
        }

       
    }
}

posted @ 2010-03-06 11:21  会游泳dě鱼  阅读(153)  评论(0编辑  收藏  举报