Closed khaledAKA closed 1 year ago
Here is my code. I make sure that the credentials is correct
private void downloadFromWebdav(String webDavPath, String username, String password) throws IOException { Sardine sardine = SardineFactory.begin(username, password); List<DavResource> resources = sardine.list(webDavPath, 1); for (DavResource res : resources) { System.out.println(res); } }
Here is my code. I make sure that the credentials is correct