File target = area.getFile(entry.getName());
SVNWCAccess wcAccess = area.getWCAccess();
ISVNEntryHandler propGetHandler = new PropFetchHandler(changeLists, propName, handler, base);
if (SVNDepth.FILES.compareTo(depth) <= 0 && entry.isDirectory()) {
wcAccess.walkEntries(target, propGetHandler, false, depth);
} else if (SVNWCAccess.matchesChangeList(changeLists, entry)) {
if (propName == null) {//proplist hack for compatibility with subvsersion
SVNVersionedProperties properties = base ? area.getBaseProperties(entry.getName()) : area.getProperties(entry.getName());
if (propName != null) {
SVNPropertyValue propValue = properties.getPropertyValue(propName);