Drughi Posted November 13, 2019 Share Posted November 13, 2019 (edited) Hi, I have a parameter on my wrangle (operator list) with a realtive path e.g. "../Geo_*" . How to get an array of absolute pathes with all nodes matching ("obj/Geo_1", "obj/Geo_2", "obj/Geo_3", ...) Edited November 13, 2019 by Drughi Quote Link to comment Share on other sites More sharing options...
Stalkerx777 Posted November 13, 2019 Share Posted November 13, 2019 Your best bet would be to add an extra parameter (can be hidden) with Python expression which would expand that relative path for you and then in you can read this string back in vex. " ".join([n.path() for n in hou.pwd().glob(hou.pwd().evalParm('relative'))]) 2 Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.