Powershell - Get-ChildItem Cmdlet

Cmdlet

Get-ChildItem cmdlet 可用於獲取一個或多個特定位置中的專案或子專案。

在這些示例中,我們看到了 Get-ChildItem 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 控制檯中鍵入以下命令

Get-ChildItem -Name

輸出

你可以在 PowerShell 控制檯中看到以下輸出,在 D:\temp\test 目錄中。

test.csv
test.txt
test.xml
test1.txt