eclipse - 在eclipse中,显示文件系统中的当前文件

标签 eclipse plugins filesystems

在 eclipse 中,有没有办法在文件系统中显示当前选定的文件。
我目前需要它在资源管理器中打开,但它也可以在 finder 或 nautilus 中打开。

基本上,我不需要“使用系统编辑器打开”选项。我想要一个带有选项的右键单击菜单:“在资源管理器/finder/nautilus 中显示文件”。

谢谢

最佳答案

注意:您也可以develop your own external tool在 Windows 资源管理器中打开文件
alt text
或者你可以使用像 这样的 Eclipse 插件StartExplorer .
alt text

MacOS注意事项:
zvikico mentions :

On Mac OS X, replace the location with /usr/bin/open and the arguments should be just ${container_loc}.


但是Adam cautions :

Doesn't work - OSX, you need to put quotes around the ${container_loc} otherwise you'll often get bizarre error messages because it can't cope with spaces in file names.


但是user2036022 details :

you can use -R "${resource_loc}" on macosx as argument to /usr/bin/open to be consistent with other similar tools.

关于eclipse - 在eclipse中,显示文件系统中的当前文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1161240/

相关文章:

Eclipse 一直说 "No tests found with test runner JUnit 5"

eclipse - CVS 存储库缺少连接类型

gradle - 更改默认Gradle依赖文件扩展名

file - 在 hadoop 文件系统中查找文件

c - 如何在内核模块内创建/proc文件?

java - 使用 Eclipse 创建 Camel 项目

Eclipse 生命周期

Javascript jQuery 插件渲染问题

c# - 如何创建将在子目录中搜索插件的 DirectoryCatalog

java - 从 Java 应用程序读取的文件是否调用系统调用?