I could just click on the script and it would move everything instead of having to select all the files and dragging. Nice to use when I'm using the stack/fan display of that folder.
I could just click on the script and it would move everything instead of having to select all the files and dragging. Nice to use when I'm using the stack/fan display of that folder.
Here's an Applescript that will move everything in your Downloads folder to the trash. You can save it as an Application and drag it to the top of Finder.
Code:
set theDownloadsFolder to path to downloads folder
tell application "Finder"
set theItems to every item of theDownloadsFolder
move theItems to trash
end tell