在 Eclipse API 中,如何从位于项目或工作区外部的文件获取 IFile

发布于 2024-07-15 04:07:44 字数 80 浏览 4 评论 0原文

我想创建 IFile 接口来打开位于项目或工作区外部的文件。

如何获取IFile接口?

问候, 西蒙

I want to create IFile interface to open file that locate outside project or workspace.

How to get IFile interface?

Regards,
Simon

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

只等公子 2024-07-22 04:07:44

http://wiki.eclipse.org/FAQ_How_do_I_open_an_editor_on_a_file_outside_the_workspace%3F

您可以创建一个链接资源:

IPath location = new Path(name);
IFile file = project.getFile(location.lastSegment());
file.createLink(location, IResource.NONE, null);

或者,如果您可以使用 EFS 接口(自 Eclipse 3.3 起),则可以使用它来代替 IFile。

http://wiki.eclipse.org/FAQ_How_do_I_open_an_editor_on_a_file_outside_the_workspace%3F

You can create a linked resource:

IPath location = new Path(name);
IFile file = project.getFile(location.lastSegment());
file.createLink(location, IResource.NONE, null);

Or, if you can use the EFS interface (since Eclipse 3.3), you can use that instead of IFile.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文