This one will list all `files` in `<dir>` with topmost being oldest modified

 find <dir> -type f | xargs ls -l

And with this the latest modified is topmost 

 find <dir> -type f | xargs ls -lt