Is there a way to delete an Eclipse project while preserving all the resources? (i.e. source code, etc.).
I guess I could delete the following files from the project directory manually:
.cproject
.project
But I am concerned that my Eclipse .metadata information that lives in my workspace may still look for those files and get confused if I delete the project files manually.
ls -lA /your/project/pathshould tell you what files to remove. - shkschneiderDelete project contents on disk (cannot be undone)?. Is that asking to delete the project information while preserving the source code? It looks as if it would just delete the project info from the workspace, but maybe keep.cprojectand.projectin disk. - Josh