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 would like help with a PowerShell script that does exactly what this one (I found on this site) does, except I have tried to add another column for the file size and I can't seem to figure that part out. I need one that does specific file extensions, but also if anyone knows how to get a FULL listing of every file and folder with their sizes in the same format as this one, that would be great. Thanks!

ls -r -fi *.doc | sort @{expression={$_.Name}}, 
                       @{expression={$_.LastWriteTime};Descending=$true} | 
                  select Directory, Name, lastwritetime 
ls -r -fi *.xls | sort @{expression={$_.Name}}, 
                       @{expression={$_.LastWriteTime};Descending=$true} | 
                  select Directory, Name, lastwritetime 
share|improve this question

1 Answer

The file size is specified by the Length property e.g.:

ls . -r *.xls | sort @{expression={$_.Name}},
                     @{expression={$_.LastWriteTime};Descending=$true} | 
                select Directory, Name, LastWriteTime, Length
share|improve this answer

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.