Das ist die Version mit Unterordner

Show Plain Text
  1. property baseFolderName : "Standorte"
  2.  
  3. tell application "Microsoft Excel"
  4.   set folderNames to value of column 1 of used range of active sheet
  5.   set subFolderNames to value of columns 2 thru 4 of row 1 of active sheet
  6. end tell
  7. set subFolderNames to item 1 of subFolderNames
  8. set folderStructure to "/{'" & item 1 of subFolderNames & "','" & item 2 of subFolderNames & "','" & item 3 of subFolderNames & "'}"
  9. set baseFolder to quoted form of (POSIX path of (path to desktop folder) & baseFolderName & "/")
  10. repeat with aRow in folderNames
  11.   do shell script "/bin/mkdir -p " & baseFolder & quoted form of (item 1 of aRow) & folderStructure
  12. end repeat
----------
Gruss

Stefan