在C 中讀寫INI檔案 WIN32 API

2021-04-12 22:14:21 字數 859 閱讀 6541

[dllimport(

"kernel32")]

private

static

extern

long

getprivateprofilestring(

string

section,

string

key,

string

def,stringbuilder retval,

intsize,

string

filepath);

[dllimport(

"kernel32")]

private

static

extern

long

writeprivateprofilestring(

string

section,

string

key,

string

val,

string

filepath);

//讀stringbuilder sb

=new

stringbuilder(

255);

getprivateprofilestring(

"setting",

"user",

"",sb,

255,

"d:/a.ini");

messagebox.show(sb.tostring());

//寫writeprivateprofilestring(

"setting",

"version",

"macroideal1.1",

"d:/a.ini");

Win32實現INI檔案的讀寫

inifile.h inte ce for the cinifile class.if defined afx inifile h 3d06e4ac 5a93 4d23 84bd 1694e88fdb70 included define afx inifile h 3d06e4ac 5a93 4d2...

在C 中讀寫INI檔案

ini 檔案就是擴充套件名為 ini 的檔案。在windows系統中,ini檔案是很多,最重要的就是 system.ini system32.ini 和 win.ini 該檔案主要存放使用者所做的選擇以及系統的各種引數。使用者可以通過修改ini檔案,來改變應用程式和系統的很多配置。但自從window...

在VC 中讀寫INI檔案

在vc 中讀寫ini檔案 zt 在我們寫的程式當中,總有一些配置資訊需要儲存下來,以便完成程式的功能,最簡單的辦法就是將這些資訊寫入ini檔案中,程式初始化時再讀入.具體應用如下 一.將資訊寫入.ini檔案中.1.所用的winapi函式原型為 其中各引數的意義 lpctstr lpstring 是鍵...