vote up 1 vote down star

I was looking for a small plugin for Eclipse that would allow to open windows explorer on currently selected resource from Package Explorer tree.

I know that Aptana Studio provides this functionality via context menu on the resource, but it has tons of other stuff that I am not interested to.

Are there other solutions?

flag

73% accept rate

2 Answers

vote up 1 vote down check

I use this plugin, it seems ok

http://sourceforge.net/projects/startexplorer/

link|flag
Thanks! Exactly what I was looking for. – Gennady Shumakher Nov 4 at 11:53
vote up 0 vote down

Create a new Plug-In project using Eclipse PDE. Hook your bundle's Activator class into the Common Navigator API to receive selections for IResource. For each IResource selected, use the FileLocator to get a file URI, with which you can construct a java.io.File object. This can then be opened in the operating system's native file explorer using Java 6 Desktop integration:

	if (Desktop.isDesktopSupported()) {
		Desktop desktop = Desktop.getDesktop();
		desktop.open(new File("C:/"));
	}
link|flag
I would prefer to have this command available in the context menu. What are the relevant interfaces for that? – Gennady Shumakher Nov 4 at 10:26

Your Answer

Get an OpenID
or

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