1

我的问题是关于使用 Windows 命令行解析 ini 文件。

我在尝试从文件中删除包含所有键的部分时卡住了。该部分的名称是已知的并保存在变量中。

我试图保存行(开始,结束)以删除它们之间的东西,但它对我不起作用。

这里有人可以帮助我吗?

编辑:

这是一个示例 ini 文件:

[Example]
cycle = value
cycle2 = value
cycle_bu = value

[Example2]
key1 = value
key2 = value
key3 = value
key4 = value

[something3]
key1 = value
key2 = value
key3 = value
key4 = value
key5 = value
key6 = value
4

2 回答 2

1

http://www.robvanderwoude.com/sourcecode.php?src=readini_nt

你能检查一下这是否能奏效吗?

编辑: 这未经测试:

break >new.ini
set skip_this_section=[something]
set skip_flag=0
for /f  %%I in (myini.ini) do (
   call :print_to_file %%I
)
goto :eif

:print_to_file
setlocal enabledelayedexpansion 
    set line=%1
    set first_char=!line:~0,1!
    if "!first_char!" EQU "[" (
        if "!line!" EQU "!skip_this_section!" (
           set skip_flag=1
        ) else (
           set skip_flag=0
        )
    )
endlocal & set skip_flag=%skip_flag%
if %skip_flag% EQU %0% (
   echo %1 >> new.ini
) 
于 2012-11-30T14:57:53.577 回答
0

有一个 CLIcrudini可以按组和键操作 ini 条目:

https://github.com/pixelb/crudini/blob/master/EXAMPLES

于 2019-08-12T14:37:26.347 回答