Use find and awk to get directories with very long names.
find . -type d | awk '{ if (length($0) > 254) print}'
Use find and awk to get directories with very long names.
find . -type d | awk '{ if (length($0) > 254) print}'