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