6 lines
330 B
PowerShell
6 lines
330 B
PowerShell
$ErrorActionPreference = "SilentlyContinue"
|
|
$root = (Get-Location).Path
|
|
Get-ChildItem -Path $root -Recurse -Depth 2 -Include *.png, *.jpg, *.jpeg -File |
|
|
Select-Object @{N='File';E={$_.FullName.Replace($root, '.')}}, @{N='KB';E={[math]::Round($_.Length/1KB,1)}}, LastWriteTime |
|
|
Format-Table -AutoSize | Out-String -Width 200
|