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