Ho trovato un AppleScript online che taglia i primi caratteri da un FILENAME, tuttavia, sembra non funzionare su FOLDERS.
Come potrebbe essere modificato per rinominare i nomi delle cartelle?
set whichFile to choose file with multiple selections allowed
repeat with aFile in whichFile
tell application "Finder"
set filename to name of aFile
set name of aFile to ((characters 7 thru -1 of filename) as string)
end tell
end repeat
Grazie!