Skip to content

Instantly share code, notes, and snippets.

@phinze
Created April 5, 2013 22:12
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save phinze/5323078 to your computer and use it in GitHub Desktop.
Save phinze/5323078 to your computer and use it in GitHub Desktop.
delete all files in a folder with applescript ouch my eyezzzzzzzz
tell application "Finder"
set the appfiles to files in folder (POSIX file "/tmp/somefolder" as text)
repeat with appfile in appfiles
delete appfile
end repeat
end tell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment