0

我正在尝试将资源(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”不存在。

有人有想法么?

4

1 回答 1

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,然后为其获取文件存储。

于 2011-03-05T01:25:32.637 回答