How do I do a simple recursive listing to build a directory structure?
I am using gdata python client library. Looking at the client.py and data.py, there is no straight forward way to list and build a directory structure.
What I am doing is: (Assuming self.client has been authenticated)
- self.client.GetAllResources (include showfolders=true)
- For every resource check resource.in_collections()
Is there a better way than above?
thanks