Skip to content

Instantly share code, notes, and snippets.

@Gab-km
Created January 19, 2017 14:21
Show Gist options
  • Select an option

  • Save Gab-km/c183a7483a904bbc39008ce6d31119c3 to your computer and use it in GitHub Desktop.

Select an option

Save Gab-km/c183a7483a904bbc39008ce6d31119c3 to your computer and use it in GitHub Desktop.

Revisions

  1. Gab-km created this gist Jan 19, 2017.
    1 change: 1 addition & 0 deletions Get-FilesRecursively.ps1
    Original file line number Diff line number Diff line change
    @@ -0,0 +1 @@
    Get-ChildItem -Recurse | where { $_.Directory } | %{ [System.String]::Format("{0}`t{1}`t{2}", $_.FullName, $_.Length, $_.LastWriteTime) } | %{ Write-Output $_ }