2021-10-12 07:18:02 +01:00
|
|
|
# Get-ChildItem
|
|
|
|
|
|
|
|
> List items in a directory.
|
2021-12-07 11:20:03 +00:00
|
|
|
> This command can only be used through PowerShell.
|
2022-10-04 16:06:23 +01:00
|
|
|
> More information: <https://learn.microsoft.com/powershell/module/microsoft.powershell.management/get-childitem>.
|
2021-10-12 07:18:02 +01:00
|
|
|
|
|
|
|
- List all non-hidden items in the current directory:
|
|
|
|
|
|
|
|
`Get-ChildItem`
|
|
|
|
|
|
|
|
- List only directories in the current directory:
|
|
|
|
|
|
|
|
`Get-ChildItem -Directory`
|
|
|
|
|
|
|
|
- List only files in the current directory:
|
|
|
|
|
|
|
|
`Get-ChildItem -File`
|
|
|
|
|
|
|
|
- List items in the current directory, including hidden items:
|
|
|
|
|
|
|
|
`Get-ChildItem -Hidden`
|
|
|
|
|
|
|
|
- List items in a directory other than the current one:
|
|
|
|
|
2023-02-20 07:23:49 +00:00
|
|
|
`Get-ChildItem -Path {{path\to\directory}}`
|