Powershell - 檢索專案

Cmdlet

Get-Content cmdlet 用於將檔案內容檢索為陣列。

例 1

在這個例子中,我們將讀取一個檔案 D:\Temp\Test\Test.txt

在 PowerShell ISE 控制檯中鍵入以下命令

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

輸出

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

Get-Content D:\temp\test\test.txt
;This is a test file.

例 2

在這個例子中,我們將讀取讀取檔案內容的大小。

在 PowerShell ISE 控制檯中鍵入以下命令

(Get-Content D:\temp\test\test.txt).length

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

(Get-Content D:\temp\test\test.txt).length
20