Powershell - 格式寬的 Cmdlet

Cmdlet

Format-Wide cmdlet 可用於將輸出格式化為一個表,每個物件具有一個屬性。

在這些示例中,我們看到了 Format-Wide cmdlet 的執行情況。

例 1

在這個例子中,首先我們在 D:\temp\test 中有一個檔案 test.txt,內容為 Welcome to Tastones.Com,test1.txt 的內容為“Hello World!”。和 Welcome to Tastones.Com 分為兩行。

獲取變數中的檔案詳細資訊。

$A = Get-ChildItem D:\temp\test\*.txt

使用 Format-Wide cmdlet 獲取檔案詳細資訊。

Format-Wide -InputObject $A

輸出

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

Directory: D:\temp\test
   test.txt                                 test1.txt           

例 2

獲得所需的財產。

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

Format-Wide -InputObject $A -Property -Property Length

輸出

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

Directory: D:\temp\test
   31                                       44