![]() |
![]() | ![]() | ![]() | ![]() | ![]() | ![]() | ![]() |
| 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) |
| | find oldest folder Get-ChildItem -name | Sort-Object CreationTime -Descending | Select-Object -first 1 For some reason, this line doesn't work properly. When running this line, it always return wrong folder as oldest. Windows Explorer clearly show oldest folder in Detail View with Date Created column, but PowerShell doesn't. Help please. |
My System Specs![]() |
| | #2 (permalink) |
| | RE: find oldest folder When you call "Get-ChildItem -name" you strip all object attributes except the name, so the remainder of the pipeline will not do anything useful This pipeline returns the name of the subfolder with the oldest "creationtime" within the current working directory (non recursive): dir | ?{$_.psiscontainer} | sort creationtime | select -first 1 | select name ----- Gerd "MiroslavK" wrote: > Get-ChildItem -name | Sort-Object CreationTime -Descending | Select-Object > -first 1 > > For some reason, this line doesn't work properly. When running this line, it > always return wrong folder as oldest. Windows Explorer clearly show oldest > folder in Detail View with Date Created column, but PowerShell doesn't. > > Help please. |
My System Specs![]() |
| | #3 (permalink) |
| | RE: find oldest folder Thank you very much! "Gerd Schneider" wrote: > When you call "Get-ChildItem -name" you strip all object attributes except > the name, so the remainder of the pipeline will not do anything useful > > This pipeline returns the name of the subfolder with the oldest > "creationtime" within the current working directory (non recursive): > > dir | ?{$_.psiscontainer} | sort creationtime | select -first 1 | select name > > ----- > Gerd |
My System Specs![]() |
![]() |
| Thread Tools | |
| |
Similar Threads | ||||
| Thread | Forum | |||
| Script to move oldest .ready file | VB Script | |||
| oldest complete backup vhd | Vista performance & maintenance | |||
| keep deleting oldest file in a directory | PowerShell | |||
| Can't Find a Folder | Vista General | |||
| Find Message in this Folder | Vista mail | |||