Goal:
Create new folder "output files" in "Downloads" when there is none.
Script:
If
Kind is Folder
Full Name is not "output files"
Do the following
Run Applescript
- Code: Select all
tell application "Finder"
set folderpath to "Harde schijf:Gebruikers:toothpaste:Downloads"
make new folder at folderpath with properties {name:"output files"}
end tell