Posted in a news article comments section, moved here for perusal.
OS version: Any
tell application "Finder"
set mySelect to choose file with prompt "Select file for deep info"
set myInfo to properties of mySelect as list
set info to (item 1 of myInfo & " ") as string
set info to (info & "Name \"" & item 2 of myInfo & "\", ")
set info to (info & "Path " & item 7 of myInfo & ", ")
set info to (info & "Logical Size (" & item 15 of myInfo & ") bytes, ")
set info to (info & "Disk Size (" & item 16 of myInfo & ") bytes, ")
set info to (info & "Creation Date " & item 17 of myInfo & ", ")
set info to (info & "Modification Date " & item 18 of myInfo & ", ")
set info to (info & "Version " & item 30 of myInfo & ", ")
end tell