Find, and sort results by date created
AFAIK, Linux doesn't record the creation time, so the short answer is you cannot.
For the modification time, try this:
$ find /docs -type f -printf '%T@ %p\n' | sort -k1 -n
or:
$ find /docs -type f -print0 | xargs -0 stat -c "%y %n" | sort