工具android studio 快速打开文件
windows 系列
image.png
输入regedit
image.png
然后在 输入下面
计算机\HKEY_CLASSES_ROOT\Directory\Background\shell
我创建的
image.png
现在开始创建一个新的
image.png
默认情况是这样,我写了一个android 2
image.png
双击下面图片内容
image.png image.png image.png image.png
下面开始
image.png
image.png
image.png image.png
然后在写入地址
image.png
然后将command项的右边的数值改为"D:\android-config\android-studio\bin\studio64.exe" "%V",软件安装的具体路径要按照各自的路径来
image.png就可以右键文件夹了
image.png
增加和删除win右键的Open Folder as android studioProject,Jetbrains系列
https://blog.csdn.net/qq_37504892/article/details/107705527
mac 添加右键文件夹导入文件
这个还没有更好的方法实践,参考下面的内容。我研究好了在继续发布。
https://www.jianshu.com/p/4959af45dbb0
https://juejin.cn/post/6850418107946237965
持续刚更新中....
windows 里面创建一个 android.reg 可以执行的添加到注册表里面的文件。
添加内容:
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\Android Studio]
@="Open with Code"
"Icon"="D:\\android-config\\android-studio-4.20\\bin\\studio64.exe"
[HKEY_CLASSES_ROOT\*\shell\Android Studio\command]
@="\"D:\\android-config\\android-studio-4.20\\bin\\studio64.exe\" \"%1\""
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\Android Studio]
@="Open with Android Studio"
"Icon"="D:\\android-config\\android-studio-4.20\\bin\\studio64.exe"
[HKEY_CLASSES_ROOT\Directory\shell\Android Studio\command]
@="\"D:\\android-config\\android-studio-4.20\\bin\\studio64.exe\" \"%V\""
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\Android Studio]
@="Open with Android Studio"
"Icon"="D:\\android-config\\android-studio-4.20\\bin\\studio64.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\Android Studio\command]
@="\"D:\\android-config\\android-studio-4.20\\bin\\studio64.exe\" \"%V\""
直接运行就可以了。
idea.reg .同样的道理。
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\*\shell\IntelliJ IDEA]
@="Open with IntelliJ IDEA"
"Icon"="D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe"
[HKEY_CLASSES_ROOT\*\shell\IntelliJ IDEA\command]
@="\"D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe\" \"%1\""
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\shell\IntelliJ IDEA]
@="Open with IntelliJ IDEA"
"Icon"="D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe"
[HKEY_CLASSES_ROOT\Directory\shell\IntelliJ IDEA\command]
@="\"D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe\" \"%V\""
Windows Registry Editor Version 5.00
[HKEY_CLASSES_ROOT\Directory\Background\shell\IntelliJ IDEA]
@="Open with IntelliJ IDEA"
"Icon"="D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe"
[HKEY_CLASSES_ROOT\Directory\Background\shell\IntelliJ IDEA\command]
@="\"D:\\Program Files\\JetBrains\\IntelliJ IDEA 2020.1\\bin\\idea64.exe\" \"%V\""
网友评论