用writeprivateprofilesection,writeprivateprofilestring生成INI文件后,在每个section结束时,如何加入一个空行,使INI文件看起来更方便一些?我现在生成的INI文件格式如下:
[section1]
name1=value1
[section2]
name1=value1我想要的格式:
[section1]
name1=value1[section2]
name2=value2API的参数应该给什么值?我在writeprivateprofilestring中把lpKeyName,lpString两个参数用vbnullstring或""传入,INI文件中仍然会多一个“=”字符,传入vbcrlf也不行。
不要告诉我用print往ini文件中输入空行。