如何从Java中的文件转换为IFile,用于项目外部的文件?
通常,此代码用于从 转换为 :File
IFile
IWorkspace workspace= ResourcesPlugin.getWorkspace();
IPath location= Path.fromOSString(file.getAbsolutePath());
IFile ifile= workspace.getRoot().getFileForLocation(location);
但这仅适用于项目中的java文件。如何获取 when 文件不在工作区中(不在项目中)?IFile
File