Hey there,
for working with image sequences it would be quite helpful if it would be possible
to get number padding for the names generated by me.fileSuffix.
At the moment it’s name.1.1.exr to name.1.100000.exr
but it would be great if it also could be name.1.000001.exr to name.1.100000.exr
Some software doesn’t read it as imnage sequence if it is formatted as it is now and it is cumbersome to have to rename it. I have looked for this option but did not find it.
One could add padding with python and i can adress e.g. me.fileSuffix[0] but I can not do me.fileSuffix[0-6] which makes it impossible do to it reliable in Python (at least for me : )
>>> n = 4
>>> print(f'{n:03}') # Preferred method, python >= 3.6
004
Best
Stefan