Is there an easy way in IDEA 12 to rename a project in the "Recent Projects" list?
问题:
回答1:
Found the solution.
You can rename the Project under "File > Project Structure > Project > Project Name".
回答2:
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.
回答3:
Simply edit the file that contains the name: .idea/.name
.
回答4:
To rename project in IDEA 13 CE
- Close IDEA project
- Find project files *.ipr, *.iml, *.iws
- Rename all these files as you want to be named project e.g. New Project.ipr(iml,iws)
- Open project file in IDEA
回答5:
Change your project using refactor. (first change your project folder name).
- Select Project Name.
- Select Refactor->Rename
- Input new Project.
Everything should be ok now.
回答6:
I've tried the answer of @Matthias, @Ernest and @fhucho, but did not work (with 12.1.6CE).
What made it work was:
- change the name of the project folder
- find and rename the
.ipr
file, as proposed by @Ernest- Note: I did not have any
.iml
nor.iws
file
- Note: I did not have any
- change the name in
.idea/.name
replace all occurrences for the initial project name by the new one in all
.xml
files- find them using:
find . -name "*.xml" -exec grep -Hn $InitProjectName {} \;
回答7:
I completed the renaming as below.
The attached image is structured in project folder.
Must make changes in the xml into a new project name.
close IDEA intellij (14.0.2)
change intellij project name (folder)
e.g) old_project_name -> new_project_name
change
.idea
in folder
We have only changed the
1) artifacts in folder -> xml
2) runConfigurations in folder -> xml
3) modules.xml
4) workspace.xml
5) [your_project_name].iml
(Depending on your project structure, your folder may not contain xml
)
restart IDEA intellij
File -> Import Module...[your intellij project]
I hope this helps you :)
回答8:
- Rename all old*.iml to new*.iml
- Open this project in
Sublime Text
, useCtrl+Shift+F
to replace all "old" to "new"
Then reopen this project and build it!