I Want to make a new Folder command in apple script
Why dosent this script work?
tell application \"Finder\" activate end tell tell application \"Sys
NOTE: This can fail for two reasons; (1) '~' trapped in singlequote won't parse. (2) space in '/New Folder/' will break the path.
do shell script "mkdir -p '~/Desktop/New Folder/Bleep/Bloop'"
SOLVED:
do shell script "mkdir -p ~/Desktop/" & quoted form of "New Folder/Bleep/Bloop"