This post provides a solution for resolving this error in Eclipse IDE: ‘Open Project’ has encountered a problem. The project description file (.project) for ‘ProjectName’ is missing…

This error usually occurs when you import a project from another workspace that is written by older version of Eclipse. So when you try to open such a project, the following error message appears:

error message

If you check the project directory, the .project file is still there. But somehow Eclipse can’t understand it.

To fix this error, just delete the project from the workspace, and import again. Right click on the project, then click Delete from the context menu:

delete project context menu

The following confirmation dialog appears. DO NOT choose Delete project contents on disk. Then click OK:

confirm delete project

Eclipse will just remove project definition from the workspace. The actual project files are still there.



Now, click menu File > Import… Choose General > Existing Projects into Workspace:

import existing project

Click Next. Click Browse button in the option Select root directory, then choose the project directory. You should see the project name appears in the list Projects:

import project select root directory

Click Finish. The project will be opened successfully and the above error project description file (.project) for … is missing is gone.

I hope you found this short post helpful. Thanks for reading. You can also watch the following video to see ho I fixed this error in real life project:

 

Other Eclipse Tutorials:


About the Author:

is certified Java programmer (SCJP and SCWCD). He started programming with Java in the time of Java 1.4 and has been falling in love with Java since then. Make friend with him on Facebook and watch his Java videos you YouTube.



Add comment