Powershell - 将内容附加到文件

Cmdlet

Add-Content cmdlet 可用于附加任何文件的内容。

在此示例中,我们添加了文件 test.txt 的内容。

步骤 1

在此示例中,我们将内容设置在名为文件 test.txt 的新 txt 文件中

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

Set-Content D:\temp\test\test.txt 'Hello'

第 2 步

在此示例中,我们将内容附加到 test.html。

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

Add-Content D:\temp\test\test.txt 'World!'

第 3 步

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

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

输出

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

Hello
World!