}
protected void proppatch(WebdavFileSet fileSet)
throws IOException, HttpException
{
CollectionScanner scanner =
fileSet.getCollectionScanner(getProject(), getHttpClient(), getUrl());
HttpURL baseUrl = scanner.getBaseURL();
String[] files = scanner.getIncludedFiles();
for (int i = 0; i < files.length; i++) {
HttpURL url = Utils.createHttpURL(baseUrl, files[i]);
proppatch(url, files[i]);
}
String[] colls = scanner.getIncludedDirectories();
for (int i = 0; i < colls.length; i++) {
HttpURL url = Utils.createHttpURL(baseUrl, colls[i]);
proppatch(url, colls[i]);
}
}