Find Topology layers in Feature Dataset

155
0
12-10-2019 06:43 AM
JoseSanchez
Occasional Contributor III

Hello everyone,

I am looking for a way to list all layers for a feature dataset to disconnect Topology layers from their corresponding Feature Class (  arcpy.RemoveFeatureClassFromTopology_management) update FC structure and then add FC to topology (arcpy.AddFeatureClassToTopology_management)

This source code does not find any topology in  Feature datasets with topology

datasets = arcpy.ListDatasets("*", "Topology")

for dataset in datasets:
print(dataset)

0 Kudos
0 Replies