I'm currently using ArcView 9.2 (no extensions), and trying to list the featureclasses of a geometric network stored in a file geodatabase.gp.workspace = featuredataset
FCs = gp.listdatasets()
FC = FCs.next()
while FC:
print FC
FC = FCs.next()
Only returns the name of the geometric network. How can I get to the list of featureclasses in the same featuredataset?