O curinga é o que você precisa:
find . -path './A???????' -type d
ONDE:
'.' will search in the current directory.
-path './A???????' this is a pattern: a word starting by 'A' and it has 8 characters total.
'-type d.' will only show directories (not files).