Joakim Dahlqvist

polimpiado

About Me

Connect

LOCATION
Not Specified
WEBSITE

Houdini Skills

Availability

Not Specified

Recent Forum Posts

How to get a work item count in the File Pattern node? Jan. 27, 2025, 5:44 p.m.

tamte
you can for example append Python Processor:
count = len(upstream_items)
for upstream_item in upstream_items:
    new_item = item_holder.addWorkItem(parent=upstream_item)
    new_item.setIntAttrib( "file_count", count )
Thank you!

How to get a work item count in the File Pattern node? Jan. 27, 2025, 5:43 p.m.

Answer found in this post: Your text to link here... [www.sidefx.com]

How to get a work item count in the File Pattern node? Jan. 27, 2025, 3:59 p.m.

The Wedge Node creates "wedgetotal" and "wedgecount, The File Pattern node does not create an attribute of the total number of work items. Is there a smart way to create this? is it only possible with Python?