PowerShell: sort files by size

By Xah Lee. Date: . Last updated: .

Sort files by file size

dir -Recurse -file | sort -Property length

List files less than given size

# show files whose size is less than 100 bytes
dir -Recurse -file | Where-Object { $_.length -lt 100}

List files greater than given size

# show files whose size is greater than 1 mega bytes
dir -Recurse -file | Where-Object { $_.length -gt 1mb}

PowerShell. list files

List Files

filter

sort

Path parameter