码迷,mamicode.com
首页 > Web开发 > 详细

.net 操作INI文件

时间:2014-10-29 10:45:08      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   sp   文件   div   on   

using System.Runtime.InteropServices;
using System.Text;

namespace FaureciaManager
{
    public class FileINI
    {
        /// <summary>
        /// 写操作
        /// </summary>
        /// <param name="section"></param>
        /// <param name="key"></param>
        /// <param name="value"></param>
        /// <param name="filePath">文件路径</param>
        /// <returns></returns>
        [DllImport("Kernel32")]
        private static extern long WritePrivateProfileString(string section, string key, string value, string filePath);

        /// <summary>
        /// 读操作
        /// </summary>
        /// <param name="section"></param>
        /// <param name="key"></param>
        /// <param name="defValue">未读取到的默认值</param>
        /// <param name="retvalue">读取到的值</param>
        /// <param name="size">大小</param>
        /// <param name="filePath">文件路径</param>
        /// <returns></returns>
        [DllImport("Kernel32")]
        private static extern long GetPrivateProfileString(string section, string key, string defValue, StringBuilder retvalue, int size, string filePath);

        /// <summary>
        /// 读INI文件
        /// </summary>
        /// <param name="section"></param>
        /// <param name="key"></param>
        /// <param name="defValue">未读取到时候的默认值</param>
        /// <param name="filePath">文件路径</param>
        /// 用法 FileINI.ReadIni("ConfigURL", "URL", "192.168.10.128:7500", ConfigFilePath);
        public static StringBuilder ReadIni(string section, string key, string defValue, string filePath)
        {
            StringBuilder retValue = new StringBuilder();
             GetPrivateProfileString(section, key, defValue, retValue, 256, filePath);
             return retValue;
        }

        /// <summary>
        /// 写INI文件
        /// </summary>
        /// <param name="section"></param>
        /// <param name="key"></param>
        /// <param name="value"></param>
        /// <param name="filePath">文件路径</param>
        /// 用法  FileINI.WriteIni("ConfigURL", "URL", this.tbxUrl.Text.Trim(), ConfigFilePath);
        public static long WriteIni(string section, string key, string value, string filePath)
        {
            return WritePrivateProfileString(section, key, value, filePath);
        }

        /// <summary>
        /// 删除节
        /// </summary>
        /// <param name="section"></param>
        /// <param name="filePath">文件路径</param>
        /// <returns></returns>
        public static long DeleteSection(string section, string filePath)
        {
            return WritePrivateProfileString(section, null, null, filePath);
        }

        /// <summary>
        /// 删除键
        /// </summary>
        /// <param name="section"></param>
        /// <param name="key"></param>
        /// <param name="filePath">文件路径</param>
        /// <returns></returns>
        public static long DeleteKey(string section, string key, string filePath)
        {
            return WritePrivateProfileString(section, key, null, filePath);
        }
    }
}

 

.net 操作INI文件

标签:style   blog   io   color   ar   sp   文件   div   on   

原文地址:http://www.cnblogs.com/randyzhuwei/p/4058740.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!