Similar to the three-tier directory structure of the database system, the IDE generally logically has a three-layer directory structure: the workspace (or solution)-"Engineering-" file.
Create workspace:
For Eclipse, you must first create a directory as a directory of Workspace, select: file-"Switch workspace-" other, and then create a new directory, You can then create engineering project under this workspace directory.
You need to manually switch the current workspace, file-switch Workspace, to select a directory as the current workspace.
Each workspace corresponds to a parent directory, and each project in the workspace corresponds to a subdirectory of the parent directory.
Delete a workspace
The Eclipse workspace information is primarily stored in the Configuration/.settings/org.eclipse.ui.ide.prefs file, and is deleted in the following ways:
1 delete the specified workspace directory
2 Modifying the Configuration/.settings/org.eclipse.ui.ide.prefs file under the Eclipse program directory
Modify the line to begin with recent_workspaces=, remove the directory path of the deleted workspace space.
For example:
Recent_workspaces=e/://studyjsp/ne/://test/ne/://zonghe/ne/://myeclipse
Modified to:
Recent_workspaces=e/://studyjsp/ne/://zonghe/ne/://myeclipse
Use of Eclipse