Hi, I’m trying to collect the Paths of each Revit Link into a list using dynamo that i can then export into an excel. is there a node in dynamo that can give me these paths as a list? or it only can be done through a Python script?
Genius Loci has a node for getting link path info. Bimorph also have nodes, however for me they were not working on R2024
Python code
revit_links = UnwrapElement(IN[0]) if isinstance(IN[0], list) else [UnwrapElement(IN[0])]
OUT = [link.GetLinkDocument().PathName for link in revit_links]