如何在 Intellij 调试器中查看文件的目录?

How to see the directory of a file in Intellij debugger?

这可能适用于 intellij 中的跨语言,尽管我的示例是关于 Java 的。我在这一行之后有一个断点:

currentOut = new PrintStream(new FileOutputStream("tmp.output"));

变量选项卡显示:

我已向下导航 charOutouttestOut - 没有显示文件 tmp.output 的路径。在调试器中,如何查看此文件的创建位置?

它将在应用程序的当前目录中。 您可以通过在求值表达式框中执行此命令在调试器中获取它:

new java.io.File(".").getAbsolutePath()