教你在C 中如何讀寫INI檔案

2021-04-12 23:46:34 字數 934 閱讀 1416

//寫ini檔案

[ dllimport ( "kernel32" ) ]

private static extern bool writeprivateprofilestring ( string section ,string key , string val , string filepath ) ;

//讀ini檔案(字元

[ dllimport ( "kernel32" ) ]

private static extern int getprivateprofilestring ( string section ,string key , string def , stringbuilder retval ,int size , string filepath ) ;

//讀ini檔案(數字

[ dllimport ( "kernel32" ) ]

private static extern int getprivateprofileint 的( string section ,string key , int def , string filepath ) ;

//using system;

using system.io;

using system.runtime.interopservices;

using system.text;

namespace echoncomponentlibrary

{///

/// inifile 的摘要說明。

在C 中讀寫INI檔案

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

C 中如何讀寫INI檔案

寫ini檔案 dllimport kernel32 private static extern bool writeprivateprofilestring string section string key string val string filepath 讀ini檔案 字元 dllimpor...

如何在C 中讀寫INI檔案

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