INI檔案讀寫

2022-08-20 19:18:10 字數 654 閱讀 1202

我們在編寫程式的過程中,有很多要用到出始化,但有很多都寫進了登錄檔,而我們在想修改或者檢視的時候必須到登錄檔裡去修改,而不是直接到乙個程式目錄下的ini檔案裡檢視或者修改,怎麼使可以直接生成的ini檔案能寫進debug 呢?而不寫進登錄檔.

1

//初始化ini檔案引數

2 typedef struct

_initfile

3initfile;

讀操作:

g_initfile.pathname = _t("c:/icarvision/icarvision.ini");//路徑

dword nchar = getprivateprofilestring("guitype","type",null,strbuffer,sizeof(strbuffer),g_initfile.pathname);

g_initfile.guitype = strbuffer;//獲取初始化檔案中type的值

寫操作:

writeprivateprofilestring("guitype","type",g_initfile.guitype,g_initfile.pathname);

INI檔案讀寫

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

讀寫ini檔案

using system using system.io using system.text using system.configuration using system.runtime.interopservices using system.collections.specialized us...

讀寫ini檔案

using system using system.io using system.text using system.configuration using system.runtime.interopservices using system.collections.specialized us...