I am looking for a way to list every external file existing in my scene(already open) without the use of a reader. I've invastigate the pymel doc and could'nt find what i was looking for.
I want the list to be complete, to list even files that doesn't exist but are referenced in the scene. For now i can only list the files that are imported correctly
Here is what i still have as exemple of what i tried (i tried them with many parameters)
list_in_scene = cmds.file(q=True, list=True,rer=True)
list_path = pm.filePathEditor(query=True,listDirectories="")
pm.listReferences(recursive=True)
pm.listNamespaces(recursive=True)
Thanks for your help and advices