A “Go to Parent of Current Folder” Toolbar Button for Finder

Posted on January 10, 2008
Filed under Featured, Mac, Programming, Scripts

The “go to parent folder” button in the Finder toolbar Although the updated version introduced with Leopard significantly improves upon the one in Tiger, I still think Mac OS’s Finder is lacking in several departments. I Don’t feel “at home” with separate file managers (Path Finder or ForkLift, for example — even though I do own a license to the latter, I only use it as an SFTP client,) so I’ve taken it upon myself to improve the experience of using Finder. The first thing that annoyed me with it was the fact that even though you could use the key combo Command(or Apple key) + Up arrow to go to the parent of the current folder, there was no button in the toolbar for it (which is exactly how I would prefer to invoke this action.) Well, due to the fact that you can drag any application to Finder’s toolbar, it’s quite easy to add your own buttons there.

Update (feb 13, 08): Updated the app to have a much nicer icon (made by Matti Schneider — thanks!)

It’s ridiculously easy to tell Finder to go to the parent of the currently open folder with Applescript, so that’s what I did – I wrote an Applescript for this and saved it as an application. Then I added a nice icon for the app (made by Matti Schneider) that would not look out of place in the Finder toolbar, and dragged it there. Voilà:
Go to parent folder button for Finder’s toolbar (with nicer icon)

Download it here

Oh yeah, and here’s the Applescript I used:

tell application "Finder"
    tell front window to set theFolder to target
    tell front window to set target to parent of target
    tell front window to select theFolder
end tell

Bookmark and Share

Comments

6 Responses to “A “Go to Parent of Current Folder” Toolbar Button for Finder”

Show/hide comments & reply form: