Skip to content

Instantly share code, notes, and snippets.

@sudojunior
Created January 31, 2020 14:54
Show Gist options
  • Save sudojunior/5e802b02b427d9d05263599d7f875201 to your computer and use it in GitHub Desktop.
Save sudojunior/5e802b02b427d9d05263599d7f875201 to your computer and use it in GitHub Desktop.
# Get all files and folders in a directory (recurse, and map over)
Get-ChildItem -Recurse | Select-Object FullName
# ^, but directories only
Get-ChildItem -Recurse | ?{ $_.PSIsContainer } | Select-Object FullName
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment