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