Created
November 27, 2013 08:51
-
-
Save patrickwelker/7672645 to your computer and use it in GitHub Desktop.
AppleScript to create a folder tree like that from Photo Mechanic.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Put it in a Keyboard Maestro macro or make a service out of it with Automator.