Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this wonderful script:

gci -Recurse| where {$_.LastWriteTime -gt (Get-Date).AddDays(-45)}| group Extension -NoElement

The output is:

4352    .JPG
2352    .doc
2135    .pdf
1811    .xls
1472    
857 .pub
732 .xlsx
565 .docx
66  .rtf
64  .lnk
63  .ppt
61  .url
41  .png
38  .xml
28  .htm
27  .msg

what I would like is this same script to be run on every directory of the current directory (non recursive). for example if i am in directory c:\test, and that directory as the folder alex, liza, and harry, then i want this script to be applied to c:\test\alex, c:\test\liza, c:\test\harry

The output that I would want would be:

4352    .JPG    directory name
2352    .doc    directory name
2135    .pdf    directory name
1811    .xls    directory name
1472        directory name
857 .pub    directory name
732 .xlsx   directory name
565 .docx   directory name

How can I modify the above script to do this for every directory and append the directory name?

share|improve this question

2 Answers

up vote 1 down vote accepted

Try this

Get-ChildItem c:\test | Where-Object {$_.PSIsContainer} | ForEach-Object{
   $folder = $_.FullName
   Get-ChildItem $_.FullName -Recurse | Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-45)} | Group-Object Extension -NoElement | Select-Object Name,Count,@{n='Directory';e={$folder}}
}
share|improve this answer
PS Z:\> Get-ChildItem z: | Where-Object {$_.PSIsContainer} | ForEach-Object{$folder = $_.FullName Get-ChildItem $_.FullN ame -Recurse | Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-45)} | Group-Object Extension -NoElement | Select- Object Name,Count,@{n='Directory';e={$folder}}} Unexpected token 'Get-ChildItem' in expression or statement. At line:1 char:104 + Get-ChildItem z: | Where-Object {$_.PSIsContainer} | ForEach-Object{$folder = $_.FullName – Артём Царионов Jan 31 at 18:03
Get-ChildItem <<<< $_.Full Name -Recurse | Where-Object {$_.LastWriteTime -gt (Get-Date).AddDays(-45)} | Group-Object Extension -NoElement | Selec t-Object Name,Count,@{n='Directory';e={$folder}}} + CategoryInfo : ParserError: (Get-ChildItem:String) [], ParentContainsErrorRecordException + FullyQualifiedErrorId : UnexpectedToken – Артём Царионов Jan 31 at 18:03
thank you so much but i am getting the above error on this – Артём Царионов Jan 31 at 18:05
Looks like you have a space in '$_.Full Name', remove it and try again. – Shay Levy Feb 1 at 14:20

Does the formatting matter? If not, you can group by multiple properties.

gci -Recurse| 
    where {$_.LastWriteTime -gt (Get-Date).AddDays(-45)}|
    group Extension, Directory -NoElement
share|improve this answer
great! i am running it right now on about 100 gigs – Артём Царионов Jan 30 at 22:35
thank you. i dont think it worked. i think it returned only the top 3-5 results for every directory – Артём Царионов Jan 30 at 22:42
this is what the output looked like 2 .xlsx, \\kslfile\prope... 1 .docx, \\kslfile\prope... 2 .xlsx, \\kslfile\prope... 2 .xls, \\kslfile\proper... 2 .pdf, \\kslfile\proper... 3 .xls, \\kslfile\proper... 1 .xls, \\kslfile\proper... 1 .xls, \\kslfile\proper... 1 .tmp, \\kslfile\proper... 1 .doc, \\kslfile\proper... 2 .xls, \\kslfile\proper... 1 .doc, \\kslfile\proper... 5 .pub, \\kslfile\proper... 2 .xlsx, \\kslfile\prope... 8 .xls, \\kslfile\proper... 1 .xls, \\kslfile\proper... 3 .xls, \\kslfile\proper... – Артём Царионов Jan 30 at 22:46
hi rynant i was wondering if you could further assist please – Артём Царионов Jan 31 at 18:24
Sorry, I've been unavailable recently. Is the issue that the directory name is truncated on the display, or that there should be a higher extension count for each directory? – Rynant Feb 1 at 15:58

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.