intellij-idea

Renaming a project in IntelliJ IDEA


I have some projects where the directory containing the project is called "Code".

When I open IDEA, in my recent projects list all I see is that name.

Is there any method to change this in settings ?

I tried going to File->Project Structure->Project, I couldn't find the Project Name option in IntelliJ IDEA 13.

This is what I see when I open Project Settings I see this in my project settings.


Solution

  • You can change the project name, which is the name that is shown in the recent projects list, like so:

    Go to Project Structure (Ctrl+Alt+Shift+S) → Project Settings / Project → Project name:

    enter image description here

    Please note that this is not to be confused with name of the root module, or folder on the file system, which may or may not be similar.

    Edit

    Please try going into your .idea folder in the project, create a file named .name and enter a project name on a single line.

    e.g.

    my-new-project-name
    

    Then restart IntelliJ.

    This presumes you are using a folder-based Idea project in .idea (rather than file based, with .iws file etc)