能否以编程方式将资源从 Eclipse 项目复制到 UNC 路径?

发布于 2024-10-18 06:59:32 字数 518 浏览 3 评论 0原文

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

有人有什么想法吗?

I'm trying to copy resources (IFile) from an eclipse project to another location. The location is a UNC path which I've used before to create IProjects using IProjectDescription. However, when I try to copy the resource using the following code I get a 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);
    }
}

The exception goes something like this:

org.eclipse.internal.resources.ResourceException: Resource '/corp.dsd' does not exist.

Anyone have any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

花开浅夏 2024-10-25 06:59:32

尝试使用 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,然后获取它的文件存储。

Try using the IFileStore API. http://help.eclipse.org/helios/index.jsp?topic=/org.eclipse.platform.doc.isv/reference/api/org/eclipse/core/filesystem/IFileStore.html

You can use getLocation on your IFile and then obtain the filestore for it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文