Getting a list of all (closed and open) documents in a project

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
I would like to be able to access all the documents/designs from a project via the programming interface.
I don't want to be limited to open documents, therefore adsk.core.Application.get().documents does not work for me, since it only returns open documents.
So how do I get an array of all documents / designs / whatever in general or from a specific project?
I tried
adsk.core.DataProjects
adsk.core.DataHubs
but they appear to be emptyinaccessible structures to me. Even If I have opened a saved document. I've read the reference on all of the objects that I thought to be helpful. But I did not find a solution.
Just for context: the ultimate goal is to rehash the ParameterIO.py add-in to always be able to apply my external parameters to a whole project, without opening each file individually and clicking "import".
Thanks in advance, I appreciate your help.