我正在尝试以编程方式将项目导入 Eclipse。我不想使用 UI 模式。
以下是我用于导入项目的代码:
IProjectDescription description = ResourcesPlugin.getWorkspace().loadProjectDescription( new Path("PROJECT_PATH/.project"));
IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(description.getName());
project.create(description, null);
project.open(null);
我只得到项目文件夹以及.location file
文件.markers.snap
和.syncinfo.snap
文件,但我没有得到源文件夹等。