在java for windows中创建目录的硬链接

时间:2016-12-06 15:23:34

标签: java windows directory hardlink

我要在目录中创建一个指向我java程序中其他目录的硬链接。 (所以不是文件的链接) 我使用https://docs.oracle.com/javase/tutorial/essential/io/links.html但它不起作用。 谢谢你的帮助:))

private static void creatlink(Path newLink, Path target) throws IOException {
    try {
        Files.createLink(newLink, target);
    } catch (IOException x) {
        System.err.println(x);
        }
}

1 个答案:

答案 0 :(得分:1)

来自exact same documentation that you linked to in the question

  

目录上通常不允许使用硬链接。

真的很简单。在我所知道的任何操作系统上,您尝试做的事情是不可能的。 (有some discussion here.