
get-childitem
List of commands for get-childitem:
-
get-childitem:tldr:2e23b get-childitem: List only directories in the current directory.$ Get-ChildItem -Directorytry on your machineexplain this command
-
get-childitem:tldr:46140 get-childitem: List only files in the current directory.$ Get-ChildItem -Filetry on your machineexplain this command
-
get-childitem:tldr:6d320 get-childitem: List items in the current directory, including hidden items.$ Get-ChildItem -Hiddentry on your machineexplain this command
-
get-childitem:tldr:7b227 get-childitem: List items in a directory other than the current one.$ Get-ChildItem -Path ${path\to\directory}try on your machineexplain this command
-
get-childitem:tldr:a4f25 get-childitem: List all non-hidden items in the current directory.$ Get-ChildItemtry on your machineexplain this command