Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save patrickwelker/7672645 to your computer and use it in GitHub Desktop.
Save patrickwelker/7672645 to your computer and use it in GitHub Desktop.
AppleScript to create a folder tree like that from Photo Mechanic.
tell application "Finder" to set currentPath to (target of front Finder window) as text
set createFolders to "mkdir SELECTS && mkdir MASTERS && mkdir WEB && mkdir PRINT"
do shell script "cd " & (quoted form of POSIX path of currentPath) & "; " & createFolders
@patrickwelker
Copy link
Author

Put it in a Keyboard Maestro macro or make a service out of it with Automator.

photomechanic

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment