2016-12-06 147 views
0

我必須在目錄中創建一個硬鏈接到我的Java程序中的其他目錄。 (所以不是一個文件的鏈接) 我用https://docs.oracle.com/javase/tutorial/essential/io/links.html但它不工作。 感謝您的幫助:)在java中爲windows創建一個目錄的硬鏈接

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

錯誤日誌會很好。使用:x.printStackTrace(); – Flummox

回答

相關問題