I'm working in Python right now, and I access my data using ent = syn.get("synXXXX"). I am able to print the entity and get its meta-data in addition to being able to print its properties. But when I try to print the path simply using print(ent.path), I get a Key-Error. This never happens when I use some of the example tables. What am I doing wrong?

Created by Amie Gordon amieg
Hi: Not every entity has a path. Specifically, folders and tables won?t have a path. If you do syn.get on a FolderEntity you will get back the metadata for the entity but since there is no associated file it won?t have a path. Likewise for tables where you would use syn.tableQuery(?) to get the data of the table.

Entity has no path? page is loading…