Ini文件读写

Ini 文件是文件是Windows系统中一类比较重要的文件,通常用来存放系统或者应用程序的配置信息,以方便系统或者应用程序在初始化时再次读入。比如 Windows系统中的配置文件win.ini和system.ini,它们就主要存放系统启动或用户登陆时的系统信息。其结构如下:

[My Section]
dir=frob

My Section 是段名;
dir是键(key),
frob是键值;
应用通常是通过锻炼和键,得到键值。

在python中读写Ini文件,使用的方法是:
class RawConfigParser(
[defaults])
class ConfigParser(
[defaults])
class SafeConfigParser(
[defaults])

其中的方法有:
sections(
)
items(
section)
get(
section, option)

使用是相当方便。

在windows 的api中提供了如下函数对ini进行操作:
GetPrivateProfileInt
GetPrivateProfileSection
WriteProfileSection

文件:
Inifile.rar
大小:
7KB
下载:
下载
WriteProfileString
……等等

附件是个一个简单封装的例子,不过已经能够满足一般的需求。