if (context.isTopLevel() == false && isLeaf(file) == false && isMetadataPath(context) == false)
{
List<VirtualFile> children = file.getChildren();
if (children != null && children.isEmpty() == false)
{
VFSStructuralDeployers structuralDeployers = context.getDeployers();
// get top
while (context.getParentContext() != null)
context = context.getParentContext();
for (VirtualFile child : children)
structuralDeployers.determineStructure(child, context);
}
}
return false;
}
catch (Exception e)