Message 1 of 2
How to get list of .ass file inside of .ass file in maya

Not applicable
08-21-2018
11:28 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
file_ = cmds.file(query=1, list=1,withoutCopyNumber=1)
This command gives me list of all reference file and texture file.
assFiles = list(set([cmds.getAttr(n + '.dso') for n in cmds.ls(type='aiStandIn')]))
This command gives me list of .ass files which are standins in maya file
All .ass files which are standins in maya file also contains .ass file.
I want to list all that file using python in maya.
Can anyone tell me how to do it ?