我正在为这个xml创建一个子XML元素:
<?xml version="1.0" encoding="utf-8"?> <configuration> </configuration>
我使用这个PowerShell脚本:
[xml] $doc = Get-Content($filePath) $child = $doc.CreateElement("newElement") $doc.configuration.AppendChild($child)
如果您使用点符号来导航XML文件(例如$ doc.configuration),则Powershell会尝试对其返回的内容有所了解。
原文链接:https://www.f2er.com/xml/293424.html>如果目标元素为空或仅包含单个文本节点,则PS将返回一个String。
>如果目标元素包含除文本节点之外的子节点,它将返回一个XmlElement。
>如果存在多个目标元素,它将返回一个Object [],其中每个单独的数组元素再次受到这些规则的约束。它将是一个String或一个XmlElement取决于其内容。
>如果目标元素不存在,PS返回$ null。
在您的情况下,您很容易将节点附加到文档元素中:
[xml] $doc = Get-Content($filePath) $child = $doc.CreateElement("newElement") $doc.DocumentElement.AppendChild($child)
但是您可以使用$ doc.SelectNodes()或$ doc.SelectSingleNode()来浏览XML文档,并始终返回一个节点/节点列表。