List<DavResource> list(String url, int depth) is documented to look at infinite recursion if depth = -1, but for me it works the same as depth = 1.
Is there any way to get all files in List<DavResource> without writing recursion myself (it works slow)
Thank you!
List<DavResource> list(String url, int depth)is documented to look at infinite recursion ifdepth = -1, but for me it works the same asdepth = 1.Is there any way to get all files in
List<DavResource>without writing recursion myself (it works slow)Thank you!