Function Reference

IniRenameSection

標準形式の.iniファイル内のセクションをリネームします。

IniRenameSection ( "filename", "section", "new section" [, flag] )

 

パラメータ

filename .iniファイルのファイル名
section .iniファイル内のセクション名
new section 新しいセクション名
flag [オプション]0 (デフォルト) - "new section"が既に存在する場合、失敗とします。
1 - "new section"を上書きします。すでに存在する"new section"のキーは全て削除されます。

 

返し値

成功 非ゼロ
失敗 セクションを上書きできない場合(flag = 0)は0を返し、@errorを設定します。

 

注意

標準的なINIファイルは次のようになっています。
[Section名]
Key=Value


 

関連

IniRead, IniDelete, IniWrite, IniReadSection, IniReadSectionNames, IniWriteSection

 


$res = IniRenameSection(@ScriptDir & "My.ini", "MySection", "MyNewSection")