Я борюсь с Powershell, XML и XPath.
Мне нужен сценарий, который будет читать файл, извлекать нужный мне узел и преобразовывать его в объект, который я могу использовать в сценарии.
Файл выглядит так:
<?xml version="1.0"?>
<Objs xmlns="http://schemas.microsoft.com/powershell/2004/04" Version="1.1.0.1">
<Obj RefId="0">
<TN RefId="0">
<T>System.Object</T>
</TN>
<Props>
<Obj N="Set1" RefId="1">
<TN RefId="1">
<T>System.Object</T>
</TN>
<Props>
<S N="Folder">C:\t1</S>
<Obj N="Configs" RefId="10">
<TN RefId="10">
<T>System.Object</T>
</TN>
<Props>
<S N="N1">Geralt</S>
<S N="N2">Ciri</S>
</Props>
</Obj>
</Props>
</Obj>
<Obj N="Set2" RefId="2">
<TN RefId="2">
<T>System.Object</T>
</TN>
<Props>
<S N="Folder">C:\t2</S>
<Obj N="Configs" RefId="20">
<TN RefId="20">
<T>System.Object</T>
</TN>
<Props>
<S N="N1">Triss</S>
<S N="N2">Yen</S>
</Props>
</Obj>
</Props>
</Obj>
</Props>
</Obj>
</Objs>
Я написал этот код:
$path = "c:\file.xml"
$xpath = "/ns:Objs/ns:Obj/ns:Props/ns:Obj[@N='Set2']"
$ns = "@{ns='http://schemas.microsoft.com/powershell/2004/04'}"
[xml]$apps = Select-Xml -Path $path -XPath $xpath -Namespace $ns
Я ожидал, что смогу написать:
Write-Host "Папка: $ apps.Folder" -> C: \ t1 Write-Host "Конфигурация: $ apps.Configs.N2" -> Йен
Но я не могу получить объект из-за эта ошибка:
Cannot convert value "...". Error: "This document already has a 'DocumentElement' node."
At line:1 char:1
+ [xml]$t = Select-Xml -Path $path -XPath "/ns:Objs/ns:Obj/ns:Props/ns:Obj[@N='Set2']"
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : MetadataError: (:) [], ArgumentTransformationMetadataException
+ FullyQualifiedErrorId : RuntimeException
Есть предложения?