IniDelete

删除标准格式的 .ini 文件中的值.

IniDelete Filename, Section , Key

参数

Filename

类型: 字符串

.ini 文件名, 如果未指定绝对路径则假定在 A_WorkingDir 中.

Section

类型: 字符串

.ini 文件中的段名, 它是包含在方括号中的标题短语(在此参数中不需要加方括号).

Key

类型: 字符串

.ini 文件中的键名. 如果省略, 将删除整个 Section.

错误处理

失败时抛出 OSError .

备注

标准的 ini 文件看起来类似下面这样:

[SectionName]
Key=Value

IniRead, IniWrite, RegDelete, RegDeleteKey

示例

从标准格式的 .ini 文件中删除位于 section2 中的一个键及其值.

IniDelete "C:\Temp\myfile.ini", "section2", "key"
unixetc