我要在目录中创建一个指向我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);
}
}
答案 0 :(得分:1)
来自exact same documentation that you linked to in the question:
目录上通常不允许使用硬链接。
真的很简单。在我所知道的任何操作系统上,您尝试做的事情是不可能的。 (有some discussion here.)