Here is a script that you can run on Snow Leopard Server that can tell
you all the files and folders with over 256 characters:find / -type f
-name "*" -exec du -h '{}' \; | awk '{if (length($NF) > 256) print $NF}'
find / -type d -name "*" -exec du -h...