我想创建IFile接口来打开位于项目或工作区外的文件。
如何获得IFile接口?
此致 西蒙
答案 0 :(得分:9)
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。