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
powershell_files_folders.htm
广告