How to delete projects in Intellij IDEA 14?
I only found how to delete projects in older versions of IDEA but still don’t see the button in my IDEA 14. Did the Jetbrains guys implement this feature or do I still have to delete my project folders manually in file explorer?
![]()
5 Answers 5
1. Choose project, right click, in context menu, choose Show in Explorer (on Mac, select Reveal in Finder ).

2. Choose menu File \ Close Project

3. In Windows Explorer, press Del or Shift + Del for permanent delete.
4. At IntelliJ IDEA startup windows, hover cursor on old project name (what has been deleted) press Del for delelte.
How can IntelliJ idea completely delete a project
step1.
Use IDEA to open the project to be deleted, right-click on the project file and select Remove Module, or press Delete
step2.
A delete prompt will pop up, “Remove Module ‘XXX’ from the project?No files will be deleted. “
means that the specified module is removed, but No files have been deleted. That is, the module has been removed and the files on disk are still there
After clicking “OK”, you can see that there are still some files in the list, which are files outside of the module. The above deleted files are only the module of the project
step3.
You can right-click on the file and select Show in Explorer to quickly open the file on disk at the location
or you can manually find the project at the location on disk
After opening the disk directory, you can see that the project files are all there, one or more
IDEA deletion is logical deletion, files on the disk need to be deleted manually by yourself
step4.
Select the File menu of IDEA and select Close Project to Close the Project before manually deleting the File
The welcome home page of IDEA will then appear. Place the mouse over the item to be deleted, and you will see the “× delete” button in the upper right corner. Click delete
step5.
Finally, manually delete the project file on the disk, to this project file can be completely deleted clean!
be careful when manually deleting files on your disk to prevent the files from being unrecoverable.
is deleted in IDEA. If you still want it, you can open it again.
Как удалить проект в Intellij IDEA?
В окне при выборе проектов наводя мишку на проект появляться крестик вот на него и нажимайте.
Но это чтобы отвязать в главном окне выборе проектов.
А чтоб удалить удалите папку проекта и всё) т.е. проект это не более чем папка с файлами и папками.
- Вконтакте

( точно не помню ) 21 задача в JavaRush
Мы создали кота по имени Барсик, его возраст — 3
Process finished with exit code 0
Код был такой : public class Cat <
IntelliJ IDEA Remove Project Example
In this post, we feature a comprehensive Example on IntelliJ IDEA Remove Project. IntelliJ IDEA is a Java integrated development environment (IDE) developed by JetBrains (formerly known as IntelliJ). It is one of the leading IDE softwares that provides comprehensive facilities to the programmer fraternity for software development. It has number of features e.g. code completion, refactoring, code compilation and execution, navigation among project files, integration with version control systems like Git, Mercurial, Perforce, and SVN etc. These features go a long way in boosting the productivity of developers by saving a lot of their time and minimizing the manual errors while refactoring the code.
But, sometimes, a common feature like removing an unwanted project forces the users to check all the menu options and search Internet for the way out. In this article, I am going to help you in figuring out exactly the same.

Thank you!
We will contact you soon.
2. Technologies used
- IntelliJ IDEA 14.0.3
3. Create a simple project
Let’s first see how can we create a new project. There are mainly 2 ways. Firstly, we can create it from the Welcome screen. Secondly, this can be done from File menu by choosing New Project . Here, I’ll follow the Welcome screen option and click on Create New Project .

Create sample project in IntelliJ IDEA

IntelliJ IDEA is quite a versatile IDE and it provides plethora of options for creating various types of projects. As these options deserve to be covered separately, I’ll simply choose the Maven quickstart archetype for creating our sample project. If you are wandering about what archetype means here, it is a Maven project templating toolkit that creates a standard structure of a project for ease of development. Creating new project from Maven quickstart archetype

Click Next button and enter Maven GAV coordinate i.e. GroupId, ArtifactId and Version of your project as shown below. Enter Maven GAV Coordinates

Now, enter the project name and specify the location where you want the project files to reside. Finish creating a new project
Press Finish button.
4. Removing a project from IDE

As we have created a new project, it’s time to see how this can now be removed. The below image shows the project Sample_1 that we created in the previous step. Sample project in IntelliJ IDEA

To remove this project, first of all, you need to close this project by going to the File menu. Choose Close Project . Closing a project using the File menu

You will see the Welcome screen of IntelliJ IDEA after closing the project. Here, you need to highlight the project that you want to remove. You can do this by using the Up/Down arrow keys or by simply using your mouse. Highlighted project in IntelliJ IDEA

Now, press DEL button (In previous versions, there was an “X” icon for doing the same action). A confirmation dialog will appear and you will need to choose either OK or Cancel . Confirmation dialog for removing the project

On pressing OK , the desired project gets removed from the list of recent projects. Project is removed from list of recent projects
5. Removing a project from the disk
The above steps won’t remove the physical project files from your computer. You can delete these from disk using your favorite file manager (e.g. Explorer on Windows).
6. Summary
In the above example, I have demonstrated an IntelliJ IDEA Remove Project Example. Unlike many other powerful features of this IDE, it is not intuitive but by using the above steps, you will be able to achieve it quite easily.