Skip to content

Instantly share code, notes, and snippets.

@icetee
Created January 6, 2017 15:34
Show Gist options
  • Save icetee/a1757e80dfbd3ef00599c03b886fd238 to your computer and use it in GitHub Desktop.
Save icetee/a1757e80dfbd3ef00599c03b886fd238 to your computer and use it in GitHub Desktop.
PowerShell recurse full path list
Get-ChildItem . -recurse | % {
Write-Host $_.FullName
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment