Skip to content

Instantly share code, notes, and snippets.

@chriscooning
Created October 26, 2018 15:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chriscooning/4646becd7d9dc3d659b8f6ec5992ca58 to your computer and use it in GitHub Desktop.
Save chriscooning/4646becd7d9dc3d659b8f6ec5992ca58 to your computer and use it in GitHub Desktop.
[powershell] Make a csv list of all files in a folder
Get-ChildItem C:\example\*.* | Select-Object FullName | Export-Csv C:\example.csv -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment