Deep info

I was asked to supply detailed information on a bunch of support files. Rather than manually type them all up, I created this script to get all the “deep info”

OS version: OS X

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