Files
ESP-Nodes/assets/powershell.md
2024-09-14 16:23:04 -04:00

267 B
Raw History

Get-Children

Gets items in a specified location. To list the folders in my drive C, I will run the command below:

Get-ChildItem c:/

This will list all the top-level folders. To list all files, folders include subfolders use the -Recurse parameter.

Get-Help