💰 EnumIniSection 枚举小节名
🎯功能
枚举指定INI文件里的所有小节名
📜语法
结果 = dm.EnumIniSection(文件名)
📥参数
参数 | 数据类型 | 解释 |
---|---|---|
文件名 | 字符串 | INI文件所在路径 |
📤返回
字符串
, 每个小节名用"|"
来连接,如果没有小节,则返回空字符串""
. 比如"aaa|bbb|ccc"
💡示例
// 绝对路径
dm_ret = dm.EnumIniSection("c:\test_game\cfg.ini")
// 相对路径
dm.SetPath "c:\test_game"
dm_ret = dm.EnumIniSection("cfg.ini")
if len(dm_ret) > 0 then
sections = split(dm_ret,"|")
count = ubound(sections) + 1
index = 0
Do While index < count
TracePrint sections(index)
index = index + 1
Loop
end if
📘备注
此函数是多线程安全的. 多线程同时读写同个文件不会造成文件错乱.