Dec 8 2010
It's horribly annoying trying to find a file on your file system when it's buried folders deep in your project, on who knows which hard drive. In an effort to make this easier I scoured the interwebs for you, and found a solution on StackOverflow.
Since ColdFusion Builder is Eclipsed based, this solution works for it as well. From CFBuilder, choose Run > External Tools > External Tools Configuration. Once there, right-click on Programs and choose New. Complete the dialog as shown below:

- Location:
/usr/bin/open - Arguments:
${container_loc}
After completing the fields, click Apply, and then Run to run it for the first time.
Now you can choose a file from the Project Navigator, click the Run Tools icon, and choose Show in Finder.

No more hunting through Finder windows for that illusive CSS file.

Dec 8, 2010 at 11:34 PM Thanks Dan! Great find. I followed your example and added this to Flash Builder, but I encountered an issue with spaces in my folder names. To fix I added quotes around the argument like this "${container_loc}". Works like a charm!
Dec 9, 2010 at 3:05 PM Assuming your files are in the project themselves, try the "Open Resource" dialog (default key binding is CTRL+SHIFT+R in Windows.) It's like Finder, but integrated into Eclipse.
I almost always open templates this way in Eclipse--I rarely use the Navigator view.
Dec 9, 2010 at 9:29 PM Install the Path Tools plugin...it does this and a lot more. Very useful.
Nov 27, 2012 at 1:37 PM Excellent post, very helpful tip. That drove me crazy that it did not appear in the "Show In..." in the context menu. This is a good workaround for that. Is there a way to add Run Tools to context menu?