Converting org.eclipse.emf.common.util.URI to Java.io.File
Code snippet:
URI resolvedFile = CommonPlugin.resolve(uri);
String fileString = resolvedFile.toFileString();
File file = new File(fileString);
Thats it. You have got the File now.
org.eclipse.emf.common.CommonPlugin... More