每当我从正在运行的 Java 程序中打开外部文件夹时,都会出现此错误:
致命:不是 git 存储库(或任何父目录):.git
据我所知,一切正常,错误让我感到困惑。
用于打开文件夹的代码:
File file = new File(saveDirectory);
Desktop desktop = Desktop.getDesktop();
try {
desktop.open(file);
} catch (IOException e) {
e.printStackTrace();
}
我正在 Eclipse Juno 中构建程序,它也是一个 git 存储库