Open Trash folder in OS X May24 '07
I accidently deleted some files to the Trash in Mac OS X, and to re-claim them, I went to the desktop thinking I was using Windows.
Hmm. No "trash can" icon there.
How about the Finder? Nope. Even though there's a "folder" for Desktop, there is no "folder" for the Trash:

I suddenly realized there is no direct way to access the Trash, other than via the dock itself.


"This is inconvenient," I thought.
Spotlight and LaunchBar
Since I typically avoid using the dock (I prefer using Spotlight and LaunchBar), having the Trash exist solely in the dock is cumbersome for me.
As you could guess, my next step was to try Spotlight and LaunchBar, to see if they link directly to the "trash folder."
No luck with Spotlight. The "Top Hit" is "trashcan.gif."

LaunchBar, on the other hand, has success. Typing in "trash," or any variation thereof, produces an AppleScript for "opening the trash."
![]()
This works great. But where is this script stored, and how did it get on my system?
LaunchBar shows the directory path to where the script is stored:
/Applications/LaunchBar.app/Contents/Resources/BuiltInScripts
So it appears this script came bundled with LaunchBar, not with Mac OS X itself.
Sure enough, as I open the script in Script Editor, here is the code:
-- Copyright (c) 2006 Objective Development
-- http://www.obdev.at/
tell application "Finder"
open trash
activate
end tell
Simple but effective.
Categories: AppleScript
, LaunchBar
, Mac OS X
, Operating System
, Spotlight
, Tips ![]()
Add Feedback (view all)
Leave feedback
Thx, I thought it would be that simply but not sure of syntax till I read your site here. Now using this script to open the Trash folder with xGes ... Read more.
Brilliant explanation, clear, and well documented with screen shots. You answered more than one question that I've had for some time. Thank you. ... Read more.
Oops! The formatting/bullet-list got garbled (admin, please delete my previous/duplicate posts). If you want to access quickly Trash from a ... Read more.
All you have to do is go to the user's folder in the finder and then go to Open Folder in the "Go" menu and type .trash. That opens the trash folde ... Read more.
matthom
is published and produced by Matt Thommes - an independent publishing enthusiast, mobile blogger, content creator, informative writer, web developer from a suburb of Chicago.
Never one to conform, Matt intends to promote the effect the web has on our lives, in an effort to intensify, instruct, and clarify all that is happening around us.
- Developer eagerness turns into resilience
- Msgme.com and SMS integration
- Zeep Mobile enters the SMS fray
Popular Pages
- Fast rounded corners in Photoshop (5984 recent visits)
- PHP – passing variables across pages (2189 recent visits)
- JavaScript set selected on load (1824 recent visits)
- Removing all child nodes from an element (1311 recent visits)
- iPod songs out of order? (1074 recent visits)
- Firefox 3 smart address bar: wildcard search (988 recent visits)
- Britney - Everytime piano tab (925 recent visits)
- MySQL LEFT JOIN syntax (768 recent visits)
- Breathe Me - Sia (690 recent visits)
- Tumblr: how blogging should be (569 recent visits)
Similar Entries
- JavaScript open links in new window (324 recent visits)
- Open your mind to Disney (0 recent visits)
- Have a mint, if you can open the box (1 recent visits)
- Your site is always open (0 recent visits)
- Comments for file/folder names in OS X (0 recent visits)
Stats
189 unique visits since August 2008
Recent Referrers (click)
- how to i open trash on a mac
- osx open trash
- how to open the trash on a mac
- where is the trash folder in OS X
- mac osx view .trashes
- trash folder location mac os x
- where is trash located mac os x
- where is the trash folder in a MAc
- open trash osx
- where is mac trash folder
- how to display trash can mac
- where is trash folder in osx
- location of mac osx trash folder
- os x where is trash stored
- email open trash folder
- open trash folder on mac
- mac access trash
- how to open trash files on MAC OS X
Wow, how simple... And I was searching for this quite a time I'm using it for Quicksilver. ... Read more.