ディレクトリのみの一覧を取得する
-maxdepth:階層指定

$ find /etc/ -type d
$ find /etc/ -maxdepth 1 -type d

ファイルのみの一覧を取得する

$ find /etc/ -type f