ini檔案操作

2021-06-04 00:15:22 字數 611 閱讀 4441

using system;

using system.collections.generic;

using system.linq;

using system.text;

using system.runtime.interopservices;

using system.io;

namespace inifile

//-----寫入ini檔案 的 方法------------依次 段落 關鍵值 數值

public void iniwritevalue(string section, string key, string value)

//-----讀取ini檔案 的方法

public string inireadvalue(string section, string key)

// 刪除段落

public void delsection(string section) 

// 刪除key值

public void delkey(string section, string key)

//--驗證檔案是否存在

public bool exitinifile()}}

ini檔案操作

uses inifiles 寫入 varfilename string fileini tinifile begin filename extractfilepath paramstr 0 connect.ini fileini tinifile.create filename fileini.wr...

ini檔案操作

最近在整ini檔案,看到一篇不錯的介紹就轉了過來 概述在程式中經常要用到設定或者其他少量資料的存檔,以便程式在下一次執行的時候可以使用,比如說儲存本次程式執行時視窗的位置 大小 一些使用者設定的資料等等,在 dos 下程式設計的時候,我們一般自己產生乙個檔案,由自己把這些資料寫到檔案中,然後在下一次...

ini檔案操作

一 ini檔案的結構 注釋 小節名 關鍵字 值 ini檔案允許有多個小節,每個小節又允許有多個關鍵字,後面是該關鍵字的值。值的型別有三種 字串 整型數值和布林值。其中字串存貯在ini檔案中時沒有引號,布林真值用1表示,布林假值用0表示。注釋以分號 開頭。二 定義 1 在inte ce的uses節增加...