Yes. Show the full path of family node to user, user must rename to fix the problem. 🙂
By the way, I closed all exception setting, stack exception don't show. 😅
The follow method is a solution, it could find <FamilyA/FamilyA> problem.
```
private static bool CheckFamilyName(TreeNode node)
{
var paths = node.FullPath.Split(new[] { @"\" }, RemoveEmptyEntries);
if (paths.Distinct().Count() == paths.Length)
return false;
// Find A/A; B/B to tell user and should rename manually!
node.FullPath.ShowRevitDialog();
return true;
}
private void ReadFamilyTree(Document parentDoc, TreeNode parentNode, bool export = false)
{
var families = parentDoc.OfClass<Family>().OfType<Family>();
foreach (var family in families)
{
if (family.FamilyCategory is null)
continue;
if (family.FamilyCategory.CategoryType == CategoryType.Annotation)
continue;
if (!family.IsEditable)
continue;
TryAction(() =>
{
var node = new TreeNode(family.Name);
// It's for 'node.FullPath'
parentNode.Nodes.Add(node);
if (CheckFamilyName(node))
return;
var fdoc = parentDoc.EditFamily(family);
if (export)
{
var familyPath = Path.Combine(_rootDirPath, node.FullPath) + Res_Type_Rfa;
var familyDirPath = Path.GetDirectoryName(familyPath);
if (!Directory.Exists(familyDirPath))
Directory.CreateDirectory(familyDirPath);
if (File.Exists(familyPath))
File.Delete(familyPath);
fdoc.SaveAs(familyPath);
}
Application.DoEvents();
_progress.UpdateProgress(++_completedNum, family.Name);
ReadFamilyTree(fdoc, node, export);
fdoc.Close(false);
}, true);
}
}
```
If you want to get full code, please download demo code.