Created
April 9, 2015 09:07
-
-
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)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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