能否以编程方式将资源从 Eclipse 项目复制到 UNC 路径?
我正在尝试将资源(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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试使用 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.