How to get list of all dir/files belong to a user

ubuntu

Solution

Use `find -ls`:

find /some/path -user username -ls

Problem

1 - How can I get list of all files and directories with permission details, which belong to a particlular user. 2- How can I get all details of a file or directory like it's owner, group, permissions etc.

Original source