Display file names that are being deleted

The print command lists the path of the file being found. I want the output as the file name along with the date that particular files were created i.e similar to a ls -l command.

I am using find to list all the files that satisfy the selection criteria and delete them using rm. Can I display all those file names along with the date of creation which were being deleted using rm

Thanks in advance

Try doing an ls -l of the file path before each rm

find path selection-criteria -ls -exec rm {} \;