Is there an easy way in IDEA 12 to rename a project in the \"Recent Projects\" list?
Sublime Text
, use Ctrl+Shift+F
to replace all "old" to "new"Then reopen this project and build it!
Change your project using refactor. (first change your project folder name).
Everything should be ok now.
If your project is file based, you cannot rename the project from within IDEA.
Convert your project to a directory based format, and then you will have the option to rename it under "File > Project Structure > Project > Project Name".
This was just done on 14 ultimate.
To rename project in IDEA 13 CE
Found the solution.
You can rename the Project under "File > Project Structure > Project > Project Name".
I've tried the answer of @Matthias, @Ernest and @fhucho, but did not work (with 12.1.6CE).
What made it work was:
.ipr
file, as proposed by @Ernest
.iml
nor .iws
file.idea/.name
replace all occurrences for the initial project name by the new one in all .xml
files
find . -name "*.xml" -exec grep -Hn $InitProjectName {} \;