Skip to content

Instantly share code, notes, and snippets.

@jeremypage
Created April 9, 2015 09:07
Show Gist options
  • Save jeremypage/99cf001237c4875d1bb6 to your computer and use it in GitHub Desktop.
Save jeremypage/99cf001237c4875d1bb6 to your computer and use it in GitHub Desktop.
Powershell: Recursively list all files in folder with last change date (from http://stackoverflow.com/a/13345137)
get-childitem E:\search-folder -rec | where {!$_.PSIsContainer} | select-object FullName, LastWriteTime, Length | export-csv -notypeinformation -delimiter '|' -path file.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment