Examples of IFileStore


Examples of org.eclipse.core.filesystem.IFileStore

   *
   * @return the root location.
   */
  public static IFileStore getRootLocation() {
    URI platformLocationURI = Activator.getDefault().getRootLocationURI();
    IFileStore root = null;
    try {
      root = EFS.getStore(platformLocationURI);
    } catch (CoreException e) {
      //this is fatal, we can't access the platform instance location
      throw new Error("Failed to access platform instance location", e); //$NON-NLS-1$
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.