ChatGPT解决这个技术问题 Extra ChatGPT

How to prevent open last projects when IntelliJ IDEA starts?

By default IntelliJ IDEA opens the last project when starting.

How to start IntelliJ without opening last project?

very annoying default setting
Whoever decided this setting needs to be enabled by default clearly has never worked in a codebase where you need to have ~10-15 projects open regularly. I used to lose ~5 minutes of my life waiting for Intellij to reload projects that I didn't need open every time I restarted it. Thank god there's a way to turn that off!

Z
Zoe stands with Ukraine

IntelliJ 14, 15, 16:

Settings -> Appearance & Behaviour -> System Settings -> Reopen last project on startup

Previously:

Settings -> General -> Startup/shutdown -> Reopen last project on startup.

In 14 this is now in Settings -> Appearance & Behavior -> System Settings. Or you can use the search functionality to find it easier.
Settings is also renamed as Preferences under Intellij IDEA tab.
Also works for other IDE's from JetBrains such as CLion.
Just search "System Settings" in the search panel.
Usefull for both intelij and android studio. Thanks!
P
Pytry

If for any reason you need to change this setting without using the UI (for example if IDEA is hanging when it opens your project), you can find the setting in eg

/.IntelliJIdea10/config/options/ide.general.xml

The location of the file is documented in http://devnet.jetbrains.net/docs/DOC-181

The specific setting you need to change (or add) is

<application>
  <component name="GeneralSettings">
    <option name="reopenLastProject" value="false" />
  </component>
</application>

Mac

In the latest version of IntelliJ, the location of this file on a Mac is

~/Library/Preferences/IntelliJIdea2018.2/options/ide.general.xml

Settings Repository

If you have the settings repository enabled, then it can be found here:

~/.IntelliJIdea${idea_version}/config/settingsRepository/repository/ide.general.xml


OSX: sed -i.bak 's/"reopenLastProject" value="true"/"reopenLastProject" value="false"/' ~/Library/Preferences/IntelliJIdea13/options/ide.general.xml
On Mac, path should be something like this for 2017 and onward: ~/Library/Preferences/IntelliJIdea2017.2/options/ide.general.xml
Add the line if missing: <option name="reopenLastProject" value="false" />
In IntelliJ 17, when I needed to stop projects from reopening at startup, editing the <option name="openPaths"> tag in the file recentProjects.xml worked for me.
In Idea 2020.1, the path was hanged to ~/.config/JetBrains/IntelliJIdea2020.1/options/ide.general.xml
C
Community

The fastest way is to

ctrl+shift+a (windows) cmd+shift+a (mac)

and then just type

reopen last project on startup

https://i.stack.imgur.com/vAWfU.jpg


a
asokan

For Intellij 13 on Mac 10.9 (Mavericks), it is located at ~/Library/Preferences/IntelliJIdea13/options/ide.general.xml as well. ( I don't have enough reputation to vote up Nicholas' answer ).


N
Nic Cottrell

On the Mac the file is located at ~/Library/Preferences/IntelliJIdea12/options/ide.general.xml

And then set the reopenLastProject option to false.


a
arcseldon

IntelliJ 2016.x keeps this information in its own file now. On my MacBook Pro w/OSX:

~/Library/Preferences/IntelliJIdea2016.2/options/recentProjects.xml

If IntelliJ hangs on startup, force quit the app then rename this file to something like "recentProjects.xml.bak."

Upon restart you'll get the option screen for creating or opening a project.

Note: the actual path may vary depending upon which version of IntelliJ you have installed eg.

IntelliJIdea2016.1/ IntelliJIdea2016.2/ IntelliJIdea2016.3/


You can also just go remove all mentions of the project giving you problems from this file and keep the rest of your recent settings intact.
it's better to remove the lines under <option name="openPaths"> tag that you want to prevent from opening on launch
V
Vladimir Ivanov

Just tick the checkbox:

Settings -> General -> Reopen last project on startup

This is for idea 10.


A
Anna Billstrom

I opened this file in VI using this path:

~/Library/preferences/IdeaIC13/options/ide.general.xml

and changed this value:

<option name="reopenLastProject" value="true" />

to

<option name="reopenLastProject" value="false" />

E
Evdzhan Mustafa

In IntelliJ 14 it is:

Settings -> Appearance & Behaviour -> System Settings -> Startup/Shutdown -> Reopen last project on startup

You can bring the settings window by pressing CTL+ALT+S.


J
Jorgesys

Intellij Idea or Android Studio:

From the menu go to :

File > Settings >Appearence & Behavior > System Settings.

disable the option:

Reopen last project on startup

https://i.stack.imgur.com/6rqGJ.png


a
ahmednabil88

For new IntelliJ versions [like 2020.3.2 ...]

https://i.stack.imgur.com/CZsFB.png


For anyone who needs the ide.general.xml file for this version, it has been moved to ~/Library/Application Support/JetBrains/IntelliJIdea2020.3/options/ide.general.xml. You may need to manually add the <option name="reopenLastProject" value="false" /> line to the GeneralSettings block.
t
takanuva15

If you're just trying to start up IntelliJ once without opening any previous projects (eg due to IntelliJ crashing with a specific project), you can use the dontReopenProjects option from the command line.

Example:

C:\dev\ide\IntelliJ IDEA Community Edition 2020.2\bin\idea64.exe dontReopenProjects

Source (credit to mikebridge for pointing it out in a comment on this answer): https://www.jetbrains.com/help/idea/working-with-the-ide-features-from-command-line.html#arguments

Note: There are also a bunch of other useful command line options as well, eg noSplash and disableNonBundledPlugins.


P
Pedro Lobito

On WINDOWS, the path is:

C:\Users\[USERNAME]\.IntelliJIdea[VERSION]\config\options\ide.general.xml

Then set reopenLastProject to false, i.e.:

<application> <component name="GeneralSettings"> <option name="reopenLastProject" value="false" /> </component> </application>

PS: You may have to create the option if it doesn't exist.


Since 2020.1 WebStorm settings are located here: C:\Users\%USERNAME%\AppData\Roaming\JetBrains\WebStorm[VERSION]\options\ide.general.xml
D
Danik_Help

For The latest version of Android Studio IDE

Just follow this steps

File > Settings > System Settings > click Reopen the last project Check-box > Apply or Okay


P
Philip F

To manage this setting through the config file in IntelliJ IDEA 2019.1 Community Edition, head to ~/Library/Preferences/IdeaIC2019.1/options/ to use Patrick Wilkes' answer with the ide.general.xml edit.