Reputation: 26655
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
Reputation: 61
In Eclipse, the steps will be:
Now your project has been imported.
Upvotes: 2
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
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.
Upvotes: 10