PowerShell - 向文件追加内容



命令

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!
powershell_files_io.htm
广告