win API 操作 ini 檔案

2021-08-07 08:27:52 字數 660 閱讀 5259

1.getprivateprofileint()從私有初始化檔案獲取整型數值

2.getprivateprofilestring()從私有初始化檔案獲取字串型值

3.writeprivateprofilestring寫字串到私有初始化檔案

4.getprofileint從win.ini 獲取整數值

5.getprofilestring從win.ini 獲取字串值

6.writeprofilestring寫字串到win.ini

[section 1]

xpos=300

ypos=200

[section 2]

text=hello

解析檔案內容:

uixpos = getprivateprofileint("section 1", "xpos", 0,"a.ini");

uilen = getprivateprofilestring("section 2", "text", "nothing", buf, 256, "a.ini");

ini檔案操作

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

ini檔案操作

using system using system.collections.generic using system.linq using system.text using system.runtime.interopservices using system.io namespace inifi...

ini檔案操作

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