gpt4 book ai didi

java - 从 IntelliJ IDEA 中的文件夹打开文件

转载 作者:行者123 更新时间:2023-12-02 02:03:00 30 4
gpt4 key购买 nike

我是一名初级 Java 程序员,我的 USB 上有一个项目,我试图双击文件夹中的源代码,而不进入任何软件或 IDE。

但是,它只是在记事本中打开代码,并在我右键单击该文件夹时提供“使用 Visual Studio 打开”选项。没有“使用 IntelliJ IDEA 打开”选项。如果你们能帮助我那就太好了。

我还想知道如何将项目保存在另一个文件夹或驱动器中,而不必转到文件程序并将其复制并粘贴到我想要的驱动器中。

最佳答案

  1. 创建一个文本文件并在其中添加以下代码:
@echo off

SET PhpStormPath=C:\Program Files\JetBrains\PhpStorm 2019.3.1\bin\phpstorm64.exe

echo Adding file entries
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_SZ /v "" /d "Open in PhpStorm" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm" /t REG_EXPAND_SZ /v "Icon" /d "%PhpStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\*\shell\PhpStorm\command" /t REG_SZ /v "" /d "%PhpStormPath% \"%%1\"" /f

echo Adding within a folder entries
@reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\PhpStorm" /t REG_SZ /v "" /d "Open with PhpStorm" /f
@reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\PhpStorm" /t REG_EXPAND_SZ /v "Icon" /d "%PhpStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\Directory\Background\shell\PhpStorm\command" /t REG_SZ /v "" /d "%PhpStormPath% \"%%V\"" /f

echo Adding folder entries
@reg add "HKEY_CLASSES_ROOT\Directory\shell\PhpStorm" /t REG_SZ /v "" /d "Open with PhpStorm" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\PhpStorm" /t REG_EXPAND_SZ /v "Icon" /d "%PhpStormPath%,0" /f
@reg add "HKEY_CLASSES_ROOT\Directory\shell\PhpStorm\command" /t REG_SZ /v "" /d "%PhpStormPath% \"%%1\"" /f

pause
  • 将文件重命名为 script.cmd 或 script.bat 扩展名

  • 以管理员身份运行此文件。

  • 关于java - 从 IntelliJ IDEA 中的文件夹打开文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51278189/

    30 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com