Skip to content

Instantly share code, notes, and snippets.

@Gab-km
Created January 19, 2017 14:21
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 Gab-km/c183a7483a904bbc39008ce6d31119c3 to your computer and use it in GitHub Desktop.
Save Gab-km/c183a7483a904bbc39008ce6d31119c3 to your computer and use it in GitHub Desktop.
再帰的にファイルのフルパス、サイズ、更新日時を表示するスクリプト
Get-ChildItem -Recurse | where { $_.Directory } | %{ [System.String]::Format("{0}`t{1}`t{2}", $_.FullName, $_.Length, $_.LastWriteTime) } | %{ Write-Output $_ }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment