Is there any sort option available in find command to get directory with least access date/time
find -type d -printf '%T+ %p\n' | sort | head -1
source