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 Tastones</html>'

第 3 步

在這個例子中,我們來讀取 test.html 的內容。

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

輸出

你可以在 PowerShell 控制檯中看到以下輸出。

<html>Welcome to Tastones</html>