Is there an add on or program to keep up with recent finder locations, or recent finder windows on OS X?

On Windows there is a "recent places" sidebar.

On OS X I know that you can add places to the sidebar, and you can have saved searches in the sidebar, but what about recent finder locations?

Thanks!

Edit: Just found Fresh. I would recommend trying it.

link|improve this question

1  
Would it be too much to ask that you type recent into the search box in Finder's help menu before asking? – Daniel Beck Apr 18 '11 at 4:14
Will try that next time. I was also hoping there would also be some fun utility to quickly access these things. You don't use anything like that? – cwd Apr 18 '11 at 19:55
Cmd-? is usually bound to the help menu search box. You can use that with Finder in front. – Daniel Beck Apr 18 '11 at 19:58
sorry, i meant a quick way to access recent files (or keyboard shortcut) - not a quick way to access help. thanks though. – cwd Apr 18 '11 at 21:31
feedback

4 Answers

up vote 2 down vote accepted

Select a Finder window, and in the Go menu there is a "Recent Folders" list.

enter image description here

link|improve this answer
Thanks! Also - does anybody know in which pList these things are stored in? – cwd Apr 18 '11 at 19:56
@cwd Unsurprisingly, com.apple.Finder.plist. defaults read com.apple.Finder | grep -A 10 Recent yields the element FXRecentFolders and the list entries in mostly binary format. – Daniel Beck Apr 18 '11 at 20:02
feedback

Stephen has the best answer, but I'll offer an alternative that doesn't really specifically address your question but is still useful to know:

It doesn't show recent folders but rather recent items: Apple Menu->Recent Items.

enter image description here

EDIT: and as cwd and Daniel Beck mentioned in the comments, hold command to get the "Show in Finder" effect (rather than the default open).

link|improve this answer
How did you get the behavior in your screenshot? By default, it's open (implicitly), not Show in Finder. – Daniel Beck Apr 18 '11 at 17:04
@Daniel Beck - hold down the command key while clicking the apple icon. @Daniel Beck - any idea how I could access these items via QuickSilver? – cwd Apr 18 '11 at 19:52
@cwd Tried Option and Shift, as usual for alternative menu items. Thanks. // Are you asking about the recent application/documents/servers, or recent Finder locations? – Daniel Beck Apr 18 '11 at 19:57
feedback

You could assign a shortcut to this AppleScript to get to the recent folders or recent items menus faster:

set l to {"Open Recent", "Recent Projects"}
tell application "System Events" to tell (process 1 where it is frontmost)
    if name is "Finder" then
        set m1 to menu bar 1's menu bar item 6
        click m1
        click m1's menu 1's menu item "Recent Folders"
    else
        set m1 to menu bar 1's menu bar item 3
        click m1
        repeat with v in l
            try
                click m1's menu 1's menu item v
                exit repeat
            end try
        end repeat
    end if
end tell
link|improve this answer
Looks good. thanks Lri! – cwd Jul 12 '11 at 14:09
feedback
defaults read com.apple.finder
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.