Niklas Rosencrantz
Niklas Rosencrantz

Reputation: 26655

How do I import projects from another workspace?

I started with the default workspace C:\workspace but I mange to corrupt that by removing files so now I've created a new workspace to import the files to but I don't know how to do that. Could you tell me how I import projects from another workspace? I'm using the IBM RAD which is based on eclipse.

Thank you

Upvotes: 4

Views: 13122

Answers (3)

Prabhu R
Prabhu R

Reputation: 61

In Eclipse, the steps will be:

  1. Select "File" tab
  2. Select "Import" option in the drop down list.
  3. Select "General" in the source listed.
  4. Select "Archive File" if You have .zip/.rar file of the Project or "Existing Projects into Workspace" if You have Project in some other workspace.
  5. Browse the Archive File or root directory location.
  6. Select "Finish".

Now your project has been imported.

Upvotes: 2

uaarkoti
uaarkoti

Reputation: 3657

I am not very familiar with RAD but if its anything like Eclipse, the projects are stored by plugins. For ex: All my java related projects are stored under

workspace/.metadata/.plugins/org.eclipse.core.resources/.projects

while my other projects related to another project (Seamframework related) are stored under

workspace/.metadata/.plugins/org.jboss.tools.seam.core/projects

The best thing would be to search your

workspace/.metadata/.plugins

folder and see if you can identify all your projects. When you do, you can import them all into your new workspace as is.

To import the projects, once you locate them, follow the instructions posted by others here.

Good Luck!

Upvotes: 1

Ken Chan
Ken Chan

Reputation: 90467

Here are the steps for the original eclipse :

After switching eclipse to use the new workspace , go to File--> Import , and then choose General ---> Existing Projects into Workspace , and browse to the folder of the project that you want to import.

enter image description here

Upvotes: 10

Related Questions