我正在尝试将资源(IFile)从 Eclipse 项目复制到另一个位置。该位置是我之前使用 IProjectDescription 创建 IProject 的 UNC 路径。但是,当我尝试使用以下代码复制资源时,我得到了 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”不存在。
有人有想法么?