Become a MacRumors Supporter for $50/year with no ads, ability to filter front page stories, and private forums.

D1G1T4L

macrumors 68000
Original poster
Jun 26, 2007
1,724
99
Raleigh, NC
I remember having a little script or app that I kept in my download folder that would allow me to move everything in the download folder to the trash.

Anyone have something like that? Thanks
 
I remember having a little script or app that I kept in my download folder that would allow me to move everything in the download folder to the trash.

Anyone have something like that? Thanks
I'm curious how a script would be more efficient than simply selecting everything and dragging to the trash.
 
I'm curious how a script would be more efficient than simply selecting everything and dragging to the trash.

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.
That makes sense. I'm sure you could set something up with Automator.
 
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
 

Attachments

  • Picture 8.png
    Picture 8.png
    20.6 KB · Views: 66
Last edited:
Register on MacRumors! This sidebar will go away, and you'll see fewer ads.