You can do that type of thing with PowerShell quite easily. Something like this, maybe:
Get-ChildItem | Where-Object Name.substring(0,1) -eq 'a' | Sort-Object CreationTime | Select-Object CreationTime
You can do that type of thing with PowerShell quite easily. Something like this, maybe: