Hi,
I am very very new to Java and currently i am learning, could anyone guide me how to find a directory/folder based on owner id/username/user id/functional id and a search keyword string and need the first occurring directory name.
like in unix/linux command
find . -name "keyword" -type d -maxdepth 1 -user $(whoami) -print | xargs ls -ltrdah | awk -F '/' '{print $NF}'
I searched several discussions and i am unable to get almost match-able code snippet.
Thanks,
Regards