How to? Creation and modification dates on one line?

May 29, 2008
572
4
Groton, CT
Is there any way to get a directory listing of filenames with both the creation and modification datetimes on the same line?

I tried something like
Code:
PDIR /T:C /(f dymd th:m:s) /T:W /(f dymd th:m:s) x.tmp
but that just listed the write time twice.
 
From PDIR's help:
Code:
Note: If more than one time type is specified, the first one specified is used, and all subsequent ones ignored.

But this works:
Code:
pdir /(@filetime[*,w] @filetime[*,c] fn)