![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks. |
| |||||||
![]() |
| |
| | #1 (permalink) |
| Guest | How to count the total files under c:\abc\<* folders>\out where <* folders> are many folders? How to count the total files under c:\abc\<* folders>\out where <* folders> are many folders? the structure of c:\ as c:\abc\aaa\out c:\abc\aaa\done c:\abc\bbb\out c:\abc\bbb\done c:\abc\ccc\out c:\abc\ccc\done |
My System Specs![]() |
| | #2 (permalink) |
| Guest | RE: How to count the total files under c:\abc\<* folders>\out where <* $a = dir -recurse | where { $_.PSIsContainer -eq $false} $a.Count "ABC" wrote: > How to count the total files under c:\abc\<* folders>\out where <* folders> > are many folders? > > the structure of c:\ as > > c:\abc\aaa\out > c:\abc\aaa\done > c:\abc\bbb\out > c:\abc\bbb\done > c:\abc\ccc\out > c:\abc\ccc\done > > > > |
My System Specs![]() |
| | #3 (permalink) |
| Guest | RE: How to count the total files under c:\abc\<* folders>\out where <* gci c:\abc\*\out\* | ? {$_.mode -notmatch "d"} | measure-object You can add the -recurse switch if you want to count the files in the subfolders of the "out" folders. -= IJuan =- "ABC" wrote: > How to count the total files under c:\abc\<* folders>\out where <* folders> > are many folders? > > the structure of c:\ as > > c:\abc\aaa\out > c:\abc\aaa\done > c:\abc\bbb\out > c:\abc\bbb\done > c:\abc\ccc\out > c:\abc\ccc\done > > > > |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Retrieving file count from a list of child folders | PowerShell | |||
| vista leaves behind folders when moving folders with files in them | Vista General | |||
| Renamed Folders Revert to Previous Names, Cannot Move Folders - FOLDERS ONLY | Vista file management | |||
| Folders Not Updating Unread Message Count | Live Mail | |||
| why do i have more pictures folders than i can count and how do i | Vista performance & maintenance | |||