c 操作Ini檔案

2022-05-05 03:54:15 字數 877 閱讀 4975

using

system.runtime.interopservices;

#region [操作ini檔案][dllimport(

"kernel32")]

private

static

extern

bool writeprivateprofilestring(string section, string key, string val, string

filepath);

//section:ini檔案中的段落;key:ini檔案中的關鍵字;val:ini檔案中關鍵字的數值;filepath:ini檔案的完整的路徑和名稱

public

void iniwrite(string section, string key, string value, string

filepath)

[dllimport(

"kernel32")]

private

static

extern

int getprivateprofilestring(string section, string key, string def, stringbuilder retval, int size, string

filepath);

//section:ini檔案中的段落名稱;key:ini檔案中的關鍵字;def:無法讀取時候時候的預設數值;retval:讀取數值;size:數值的大小;filepath:ini檔案的完整路徑和名稱。

public

string iniread(string section, string key, string

filepath)

#endregion

C 操作ini檔案

有時候在用c 開發時會需要在本地儲存一些簡單的資料或者配置資訊類的,此時會想起使用ini檔案去完成。下面是我自己寫的簡單的類 引用 using system.runtime.interopservices class cini function 寫入ini檔案 param 節點名稱 鍵 值 檔案路徑...

C 操作INI檔案

ini檔案格式如下 注釋 section key value 例如 我的ini檔案 log logpath c log 操作ini檔案的可以通過呼叫api函式來實現 具體 如下 using system using system.collections.generic using system.te...

c 操作ini檔案

原文 c 操作ini檔案 號右邊的就是關鍵字對應的值 value 其一般形式如下 section1 keyword1 value1 keyword2 value2 keyword3 value3 section2 keyword1 value1 keyword2 value2 class progr...