Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "FAQ How do I open an editor on a file outside the workspace?"

m
Line 1: Line 1:
You can open a read-only editor on a file outside the workspace by creating your own implementation of <tt>IStorage</tt> and <tt>IStorageEditorInput</tt> for the file.  Alternatively, you can create a <i>linked resource</i> in an existing project, which points to a file elsewhere in the file system.  This example snippet creates a project called &#147;External Files,&#148; and then prompts the user to select any file in the file system.  The code then creates a linked resource in the project to that external file,  allowing the platform to open the file in read/write mode in one of the standard editors:
+
Since 3.3 you can use the new EFS support to open an text editor on a file outside the workspace:
 +
<pre>
 +
  String name= new FileDialog(aShell, SWT.OPEN).open();
 +
  if (name == null)
 +
      return;
 +
  IFileStore fileStore=  EFS.getLocalFileSystem().getStore(new Path(filterPath));
 +
  fileStore=  fileStore.getChild(names[i]);
 +
  if (!fileStore.fetchInfo().isDirectory() && fileStore.fetchInfo().exists()) {
 +
    IWorkbenchPage page=  window.getActivePage();
 +
    try {
 +
      IDE.openEditorOnFileStore(page, fileStore);
 +
    } catch (PartInitException e) {
 +
      /* some code */
 +
    }
 +
</pre>
 +
 
 +
Alternatively, you can create a <i>linked resource</i> in an existing project, which points to a file elsewhere in the file system.  This example snippet creates a project called &#147;External Files,&#148; and then prompts the user to select any file in the file system.  The code then creates a linked resource in the project to that external file,  allowing the platform to open the file in read/write mode in one of the standard editors:
  
 
<pre>
 
<pre>

Revision as of 08:50, 9 August 2007

Since 3.3 you can use the new EFS support to open an text editor on a file outside the workspace:

   String name= new FileDialog(aShell, SWT.OPEN).open();
   if (name == null)
      return;
   IFileStore fileStore=  EFS.getLocalFileSystem().getStore(new Path(filterPath));
   fileStore=  fileStore.getChild(names[i]);
   if (!fileStore.fetchInfo().isDirectory() && fileStore.fetchInfo().exists()) {
     IWorkbenchPage page=  window.getActivePage();
     try {
       IDE.openEditorOnFileStore(page, fileStore);
     } catch (PartInitException e) {
       /* some code */
     }

Alternatively, you can create a linked resource in an existing project, which points to a file elsewhere in the file system. This example snippet creates a project called &#147;External Files,&#148; and then prompts the user to select any file in the file system. The code then creates a linked resource in the project to that external file, allowing the platform to open the file in read/write mode in one of the standard editors:

   IWorkspace ws = ResourcesPlugin.getWorkspace();
   IProject project = ws.getRoot().getProject("External Files");
   if (!project.exists())
      project.create(null);
   if (!project.isOpen())
      project.open(null);
   Shell shell = window.getShell();
   String name = new FileDialog(shell, SWT.OPEN).open();
   if (name == null)
      return;
   IPath location = new Path(name);
   IFile file = project.getFile(location.lastSegment());
   file.createLink(location, IResource.NONE, null);
   IWorkbenchPage page = window.getActivePage();
   if (page != null)
      page.openEditor(file);

See Also:


This FAQ was originally published in Official Eclipse 3.0 FAQs. Copyright 2004, Pearson Education, Inc. All rights reserved. This text is made available here under the terms of the Eclipse Public License v1.0.

Back to the top