Search code examples
phpstormpycharmwebstormjetbrains-ide

Shortcut Key to copy full file path in JetBrains IDE (PhpStorm, PyCharm, WebStorm etc..)


Is there any Shortcut Key or Option to Copy the full file path on which you are working?

Like: /var/www/html/code/info.php or /code/info.php

Thanks


Solution

  • Right click on editor tab or on entry in Project View and choose "Copy path" action.

    Alternatively: Edit | Copy Path (Ctrl + Shift + C here on Windows keymap). You can adjust the shortcuts in the Settings/Preferences | Keymap as needed.

    If you need it to be relative to the project root -- use Copy Relative Path action instead.

    Please note that this action is context dependant: when focus is on file (e.g. in Project View or some popup with files) it will be "Copy Relative Path" ... but when invoked inside the editor .. it will become "Copy Reference" (and will copy Class/Variable name etc).

    UPDATE 2022-08-19:

    Modern IDE versions have these commands under a single popup menu:

    enter image description here

    Invoked in the Project View context:

    enter image description here

    Invoked in the Editor context:

    enter image description here


    Another option is to use custom plugin that provides such actions. There are few that can do that and more (even if invoked right from the Editor).