Jump to content
Software FX Community

Getting total size for subdirectories (get-foldersize)


JuanC

Recommended Posts

$items = get-childitem $args

foreach($item in $items) {
  if ($item -is [system.IO.DirectoryInfo]) {
  $obj = new-object System.Object
  add-member -inputobject $obj -membertype NoteProperty -Name Folder -value $item
  add-member -inputobject $obj -membertype ScriptProperty -Name Length -value { $elem = get-childitem $this.Folder.FullName -include *.* -recurse | measure-object -sum length; if ($elem -eq $null) {return 0;} else {return $elem.Sum;} }
  write-output $obj
  }
}

See this post for information on using this script and powergadgets drilldown

JuanC

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...