Does anyone have an apple script built that will find all "/" or
other unusable characters from file or folder names and replace
with say a "-" instead?
Though beware that a simple usage like this would lose initial,
terminal and successive bad characters:
set text item delimiters to {"/", ":"}
set strlist to words of ":dd//sneaker/funk::kk/"
set text item delimiters to "-"
display dialog (strlist as text)
-- displays dd-sneaker-funk-kk
Also remember that "quoted form of" is your friend when working with
file names.