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
You can do it more directly with AppleScript:
tell application "Finder" set p to path to desktop -- Or whatever path you want make new folder at p with properties {name:"New Folder"} end tell