Get-DirectoryStats: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) K |
Admin (Diskussion | Beiträge) |
||
Zeile 17: | Zeile 17: | ||
[PSCustomObject]@{ | [PSCustomObject]@{ | ||
− | + | DirectorySize = $Size | |
DirectoryName = $Folder.Name | DirectoryName = $Folder.Name | ||
FullPath = $Folder.FullName | FullPath = $Folder.FullName |
Version vom 20. Februar 2020, 20:04 Uhr
Get the directory size of a local or an remote sytem.
Function Get-DirectoryStats { param( [Parameter(Position=0)] [string] $Path = (PWD).path ) process{ $Folders = Get-ChildItem $Path -Directory | Sort-Object foreach ($Folder in $Folders) { $subFolderItems = Get-ChildItem $Folder.FullName -File -Recurse -Force | Measure-Object -Property Length -Sum | Select-Object Sum $Size = [math]::Round($subFolderItems.sum/1GB,2) [PSCustomObject]@{ DirectorySize = $Size DirectoryName = $Folder.Name FullPath = $Folder.FullName } } } }