How can I delete (and not simply close) a project in PHPStorm?
13 Answers
**Two Approaches for PHPSTORM 2018.3 Version **
A. Eternal Removal or Deletion from Hardware and Phpstorm IDE
Please visit the folder 'PhpstormProjects' and delete the project file manually. If you do so, you will see the folder disappear from Phpstorm explore window. This might be weird, but true.
B. Remove from the recent project panel of Phpstorm 2018.3 (The folder after such removal will hide and a creation of the same name of project will restore the removed from the recent project panel.)
1. Click File > Close project
2. From Recent projects, select project, press the fn(on normal keyboard - key between right Alt and Ctrl, not windows key)+Delete
- Click File > Close project
- From Recent projects, select project, press the Fn + Delete on your keyboard
If you want delete a project entirely, delete the ".idea" folder within the project under Finder. This folder is hidden by default (i:e that's because it starts with a dot "." ). You will need to enable "View Hidden Files/Folders" in Finder
year 2019. PhpStorm v2018.3.5 - can't detach the project after attached. There's no "Close Project" in File menu, and no "Remove from Project View" in context menu as documentation says. Seems like a bug.
Just can't get rid of that extra project I've attached. Only one thing helped: removal of the .idea sub directory.
important note: it's about project Attach when you can't remove it from the Project view.
UPDATE/SOLVED:
Here's how to remove accidentally attached project from the current Project view:
.idea/modules.xml
you can either edit that file (remove that new/added entry, easy to find) or remove that entire file (don't worry, it will be re-created on restart).
Also it could've been added to
.idea/vcs.xml(don't remove it, just find the corresponding<mapping ...>entry in it and remove, it's underVscDirectoryMappings)Also it can be listed in
.idea/<projectname>.imlfile (find it inmodule > component > orderEntry, seemodule-nameattribute), remove from there too.restart the PhpStorm.
you will see no attached projects again.
I didn't find any UI options to do this (Mac OS Catalina, PhpStorm 2020.1, same on previous/older versions).
Actually you cannot DELETE a project by pressing "delete" or "backspace" (or clicking the "x" in the upper right corner) in the recent projects list. These operations will only remove the project from being listed in the recent projects list.
You can check this out by looking at the project folders in the directory that WebStorm creates under your user name.
By the way I have WebStorm v.10 running on Win 7 x64 and none of the steps listed here by other users allow me to actually delete a project. The only way I have found out is manual.
This would work in at least Windows 7:
Navigate to the "WebstormProjects" directory under your Windows user name, and delete the project directory. This will remove it from the recent projects list the next time you launch WebStorm.
.idea/modules.xmlfile manually, if other options can't be reached - vp_arth