有了IFileStore并且知道它代表本地文件系统中的文件,如何将其转换为IPath

最佳答案

我会这样:

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


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

关于java - 在Eclipse RCP中将IFileStore转换为IPath,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7636892/

10-09 09:23