Powershell - 创建 XML 文件

Cmdlet

New-Item cmdlet 用于创建 xml 文件和 Set-Content cmdlet 以将内容放入其中。

步骤 1

在此示例中,我们将创建一个名为 test.xml 的新 xml 文件

在 PowerShell ISE 控制台中键入以下命令

New-Item D:\temp\test\test.xml -ItemType File

你可以在 D:\temp\test 目录中看到创建的 test.xml。

第 2 步

在此示例中,我们将向 test.xml 添加内容。

在 PowerShell ISE 控制台中键入以下命令

Set-Content D:\temp\test\test.xml '<title>Welcome to Tastones</title>'

第 3 步

在这个例子中,我们来读取 test.xml 的内容。

Get-Content D:\temp\test\test.xml

输出

你可以在 PowerShell 控制台中看到以下输出。

<title>Welcome to Tastones</title>