to sort files by last modification time you can try :
find . -type f -printf "\n%TF-%TT %p" | sort
to sort by reverse order and to remove the prefix you can try :
find . -type f -printf "\n%TF-%TT %p" | sort -r | cut -d " " -f 2