How to change PHPStorm 8 default new project locat

2019-01-19 12:02发布

When I create a new project, I must edit the current project location each time, because our global projects are on:

~/Sites/

However, PHPStorm sets it default as:

~/PhpstormProjects/

How can I change the default location as mine?

1条回答
淡お忘
2楼-- · 2019-01-19 12:19

There is no GUI for that.

PhpStorm should remember last used folder (when you successfully created new project) and use it by default for next one (does for me; although I'm using the same path since v1 .. maybe this was broken since then).

If it does not and if you have brave heart .. you can edit config file directly :)

PhpStorm v8 and earlier:

PhpStorm v9 and newer: such setting is now located in recentProjectDirectories.xml file -- look for <option name="lastProjectLocation" value="LAST_PATH_HERE" /> entry.


There is a ticket asking for a GUI setting for this: https://youtrack.jetbrains.com/issue/WI-8839 -- watch it (star/vote/comment) to get notified on progress.


For default folder for "Open Folder" kind of dialogs -- follow IDEA-84622 ticket.


UPDATE 2018-05-25:

2018.2 will have a GUI field for that (Settings/Preferences | Appearance & Behavior | System Settings) -- see this comment.

enter image description here

查看更多
登录 后发表回答