Answers for "powershell get size"

3

get folder size powershell

"{0} MB" -f ((Get-ChildItem C:\users\ -Recurse | Measure-Object -Property Length -Sum -ErrorAction Stop).Sum / 1MB)
Posted by: Guest on May-11-2020
1

get size of file powershell

To get the file sizes in KB:

Get-ChildItem | % {[int]($_.length / 1kb)}
Or to round up to the nearest KB:

Get-ChildItem | % {[math]::ceiling($_.length / 1kb)}
To get the number characters:

Get-ChildItem | % {(Get-Content $_.FullName).length}

credit to Dave Sexton from Stack Overflow
Posted by: Guest on June-04-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language