dcantor May 609 4 2013-01-12 #1 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.
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.
vefatica May 13,834 211 2013-01-12 #2 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)
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)
dcantor May 609 4 2013-01-12 #3 vefatica said: 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) Click to expand... Thanks!
vefatica said: 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) Click to expand... Thanks!