Programing

IntelliJ IDEA : 프로젝트 이름을 바꾸는 방법 (“최근 프로젝트”목록에서)?

lottogame 2020. 11. 4. 07:37
반응형

IntelliJ IDEA : 프로젝트 이름을 바꾸는 방법 (“최근 프로젝트”목록에서)?


IDEA 12에서 "최근 프로젝트"목록에있는 프로젝트의 이름을 쉽게 바꿀 수있는 방법이 있습니까?


해결책을 찾았습니다.
"파일> 프로젝트 구조> 프로젝트> 프로젝트 이름"에서 프로젝트 이름을 바꿀 수 있습니다.

여기에 이미지 설명 입력


프로젝트가 파일 기반 인 경우 IDEA 내에서 프로젝트 이름을 바꿀 수 없습니다.

프로젝트를 디렉토리 기반 형식으로 변환하면 "파일> 프로젝트 구조> 프로젝트> 프로젝트 이름"에서 이름을 바꿀 수있는 옵션이 있습니다.

이것은 14 Ultimate에서 방금 수행되었습니다.


이름이 포함 된 파일을 편집하기 만하면됩니다 : .idea/.name.


IDEA 13 CE에서 프로젝트 이름을 바꾸려면

  1. IDEA 프로젝트 닫기
  2. 프로젝트 파일 * .ipr, * .iml, * .iws 찾기
  3. 이 모든 파일의 이름을 프로젝트 이름으로 바꾸십시오. 예 : New Project.ipr (iml, iws)
  4. IDEA에서 프로젝트 파일 열기

리팩터링을 사용하여 프로젝트를 변경하십시오. (먼저 프로젝트 폴더 이름을 변경하십시오).

  1. 프로젝트 이름을 선택하십시오.
  2. Refactor-> Rename을 선택합니다.
  3. 새 프로젝트를 입력하십시오.

이제 모든 것이 괜찮을 것입니다.


@Matthias, @Ernest 및 @fhucho의 답변을 시도했지만 작동하지 않았습니다 (12.1.6CE 사용).

작동하게 만든 이유는 다음과 같습니다.

  1. 프로젝트 폴더의 이름 변경
  2. .ipr@Ernest가 제안한대로 파일을 찾아 이름을 바꿉니다.
    • 참고 : .iml또는 .iws파일 이 없습니다.
  3. 이름을 바꾸다 .idea/.name
  4. 모든 .xml파일 에서 초기 프로젝트 이름의 모든 항목을 새 항목으로 바꿉니다.

    • 다음을 사용하여 찾으십시오.

    find . -name "*.xml" -exec grep -Hn $InitProjectName {} \;


폴더에 구조화 된 intellij 프로젝트

아래와 같이 이름 변경을 완료했습니다.

첨부 된 이미지는 프로젝트 폴더에 구성되어 있습니다.

xml에서 새 프로젝트 이름으로 변경해야합니다.

  1. IDEA intellij (14.0.2) 닫기

  2. intellij 프로젝트 이름 (폴더) 변경

    예) old_project_name-> new_project_name

  3. 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)

  1. restart IDEA intellij

  2. File -> Import Module...[your intellij project]

I hope this helps you :)


  1. Rename all old*.iml to new*.iml
  2. Open this project in Sublime Text, use Ctrl+Shift+F to replace all "old" to "new"

Then reopen this project and build it!


I found the solution to change “Recent Projects” list!

  1. browse 'setting.gradle' in your project

  2. change rootProject.name='new_project_name'

However, this way only changes the project name.

Try the answer of @Matthias together!

참고 URL : https://stackoverflow.com/questions/16712877/intellij-idea-how-to-rename-a-project-in-recent-projects-list

반응형