0

我的 INI ( config.ini) 文件如下所示

#this is comment
[Folder]
C:\temp
C:\dir1
C:\dir2

如何获取[Folder]使用powershell的内容?

我需要数组中的文件夹路径

我见过的例子是名称值对

4

1 回答 1

1

使用您的示例 config.ini:

[System.Collections.ArrayList]$a = GC .\CONFIG.INI
[string[]]$b=$a.GetRange( $a.IndexOf("[Folder]")+1, ( $a.Count - ($a.IndexOf("[Folder]")+1)))
$b
C:\temp
C:\dir1
C:\dir2
于 2013-05-03T09:44:19.623 回答