gpt4 book ai didi

intellij-idea - 实时模板中的当前文件路径

转载 作者:行者123 更新时间:2023-12-04 05:44:30 34 4
gpt4 key购买 nike

是否可以在 IntelliJ 的实时模板中获取当前文件的完整路径?我试过使用 groovyScript("new File('.').absolutePath") 函数,但它返回 /Applications/IntelliJ IDEA.app/Contents/bin/. 而不是我希望的文件路径。

谢谢!

最佳答案

根据 docs (强调我的):

You can use groovyScript macro with multiple arguments. The first argument is a script text that is executed or a path to the file that contains a script. The next arguments are bound to _1, _2, _3, ..._n variables that are available inside your script. Also, _editor variable is available inside the script. This variable is bound to the current editor.


_editor EditorImpl 的一个实例,它保存对代表当前打开文件的 VirtualFile 的引用。

因此,以下脚本获取当前打开文件的完整路径。
groovyScript("_editor.getVirtualFile().getPath()")

或者,如果您想获取相对于项目根目录的路径:
groovyScript("_editor.getVirtualFile().getPath().replace(_editor.getProject().getBaseDir().getPath(), \"\")")

关于intellij-idea - 实时模板中的当前文件路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38488564/

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