Sure

Try with awk:
Code:
find $defPath/archive/sub/subchild -type f -mtime +365 -exec ls -l {} \; | \
awk '{ for (i=5;i<=NF;i++) printf("%s%s", $i, i==NF?"\n":" ") }'
This implies that the fields you require are:
$5 = Size
$6, $7, $8 = Date (the output may depend on the international settings)
All the remaining = File name