Powershell - 创建 HTML 文件

cmdlet

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

步骤 1

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

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

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

可以看到D:\temp\test目录下创建的test.html。

步骤 2

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

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

Set-Content D:\temp\test\test.html '<html>Welcome to TutorialsPoint</html>'

步骤 3

在此示例中,我们正在读取 test.html 的内容。

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

输出

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

<html>Welcome to TutorialsPoint</html>

❮ powershell_files_io.html