Skip to content

Instantly share code, notes, and snippets.

@MaraScott
Created March 1, 2023 16:49
Show Gist options
  • Save MaraScott/5cb36fe4f6743d00f6ee1b338ddce4e0 to your computer and use it in GitHub Desktop.
Save MaraScott/5cb36fe4f6743d00f6ee1b338ddce4e0 to your computer and use it in GitHub Desktop.
Get-ChildItem -Path "C:\Path\To\Dir" -Recurse | Select @{Name="MB Size";Expression={ "{0:N1}" -f ($_.Length / 1MB) }}, Fullname, LastWriteTime | Export-CSV -Path "C:\Path\To\Dir\list.csv" -NoTypeInformation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment