Home > Net >  Open folder as project in PhpStorm
Open folder as project in PhpStorm

Time:05-23

When I install PhpStorm from JetBrains Toolbox app I do not have an option to open folders as project when right clicking

CodePudding user response:

Sadly JetBrains Toolbox App does not provide such functionality. Only standalone installer has an option to make them right now. You will have to either use that... or create such entries manually.

https://youtrack.jetbrains.com/issue/TBX-2478 -- watch this ticket (star/vote/comment) to get notified with any progress.


To add an entry to the Windows Explorer's right-click menu:

CodePudding user response:

I found this from Jet Brains :

Click Open on the Welcome screen or select File | Open from the main menu.

In the Select Path dialog, select the directory that contains the project to open.

Drag the desired project from your file chooser right to the Open Project dialog without locating it there. The respective file in the dialog will be found automatically.

Specify whether you want to open the project in a new window, close the current project and reuse the existing window, or open the new project in the same window with the current one. Refer to the Opening multiple projects section for details.

and for the command line you could use this : <PhpStorm> <path_to_the_project folder> See Open files from the command line for more information.

  • Related