Powershell - 建立文字檔案
Cmdlet
New-Item cmdlet 用於建立文字檔案,Set-Content cmdlet 用於將內容放入其中。
步驟 1
在這個例子中,我們正在建立一個名為 test.txt
的新文字檔案
在 PowerShell ISE 控制檯中鍵入以下命令
New-Item D:\temp\test\test.txt
你可以看到在 D:\temp\test
目錄中建立的檔案 test.txt
。
第 2 步
在此示例中,我們將向檔案 test.txt
新增內容。
在 PowerShell ISE 控制檯中鍵入以下命令
Set-Content D:\temp\test\test.txt 'Welcome to Tastones'
第 3 步
在這個例子中,我們來讀取檔案 test.txt
的內容。
get-Content D:\temp\test\test.txt
輸出
你可以在 PowerShell 控制檯中看到以下輸出。
Welcome to Tastones