我正在尝试将资源(IFile)从日食项目复制到另一个位置。该位置是我之前使用过的IPC路径,用于使用IProjectDescription创建IProjects。但是,当我尝试使用以下代码复制资源时,我得到一个ResourceException:
IResource[] res = project.members();
for (IResource r : res) {
if (r instanceof IFile) {
IFile file = (IFile) r;
file.copy("\\example.com\User\Folder\sj\", true, null);
}
}
例外是这样的:
org.eclipse.internal.resources.ResourceException:资源'/corp.dsd'不存在。
有人有什么想法吗?
答案 0 :(得分:0)
尝试使用IFileStore API。 http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/filesystem/IFileStore.html
您可以在IFile上使用getLocation,然后获取它的文件存储。