03 March 2012 | |
![]() |
|
Frequenter
Uri T.
Tel Aviv,
Israel
|
how to list all the external files in my scene
Hello,
I'm looking for a way to list (even printing in the Script Editor) all the file paths of external files that are in my scene file. I'm interested in textures files and geo-cache files. So basically, I'll get a list of: folder/folder/texture.png folder/folder/cache.xml Every file node and cache node has a file source field, and I'm looking for a way to find all the file nodes and cache nodes in my scene, get the data from the file source field and print it in the Script Editor. Thanks in advance, Uri |
03 March 2012 | |
![]() |
|
constipated CG
M
Australia
|
import maya.cmds as cmds
textureFileNodes = cmds.ls(typ='file') for each in textureFileNodes: print cmds.getAttr(each + ".fileTextureName") cacheFiles = cmds.ls(type = "cacheFile") for each in cacheFiles: print cmds.getAttr(each + ".cachePath") |
03 March 2012 | |
![]() |
|
Frequenter
Uri T.
Tel Aviv,
Israel
|
Thanks stallion151!
![]() |
03 March 2012 | |
![]() |
|
Expert
|
Thread automatically closed
This thread has been automatically closed as it remained inactive for 12 months. If you wish to continue the discussion, please create a new thread in the appropriate forum.
__________________
CGTalk Policy/Legalities Note that as CGTalk Members, you agree to the terms and conditions of using this website. |
Thread Closed share thread |
«
Previous Thread
|
Next Thread
»
|
|
|