在 Eclipse RCP 中将 IFileStore 转换为 IPath

发布于 2024-12-07 23:21:08 字数 405 浏览 1 评论 0原文

给定一个 IFileStore 并知道它代表本地文件系统中的一个文件,如何将其转换为 IPath

Given an IFileStore and knowledge that it represents a file in the local file system, how can it be converted to the IPath?

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

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

发布评论

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

评论(2

画中仙 2024-12-14 23:21:08

我会这样说:

File file = iFileStore().toLocalFile(0, null);
IPath path = Path.fromOSString(file.getCanonicalPath());

另一个答案可能会起作用,但这里的答案可能更安全。

I would go with this:

File file = iFileStore().toLocalFile(0, null);
IPath path = Path.fromOSString(file.getCanonicalPath());

The other answer would probably work, but the answer here is likely safer.

卷耳 2024-12-14 23:21:08

试试这个:

String path = iFileStore.getParent().getName();
...
IPath iPath = Path.fromPortableString(path);

您可能需要对我有省略号的路径字符串进行一些字符串操作。

由于您拥有测试台,因此您可以更轻松地确定省略号中包含哪些代码。请随时用您发现的内容更新此答案。

Try this:

String path = iFileStore.getParent().getName();
...
IPath iPath = Path.fromPortableString(path);

You probably have to do some string manipulation on the path string where I have the ellipses.

Since you have the test bed, you can more easily determine what code goes in the ellipses. Feel free to update this answer with what you find.

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