As Eugen mentioned in his last post and showed in a short clip (
https://youtu.be/9BcrkguPYX8) collecting the passes may help. So I wrote a simple script.
This script can be used via a batch file that should be stored in the frames folder. It will create a subfolder if the pass file is available and move all files that fits the naming.type.
Just copy the following rows and save them as a .bat file.
if exist .\*_ao.exr md .\ao | move *_ao.exr .\ao
if exist .\*_caustics.exr md .\caustics | move *_caustics.exr .\caustics
if exist .\*_depth.exr md .\depth | move *_depth.exr .\depth
if exist .\*_diffuse.exr md .\diffuse | move *_diffuse.exr .\diffuse
if exist .\*_gi.exr md .\gi | move *_gi.exr .\gi
if exist .\*_label.exr md .\label | move *_label.exr .\label
if exist .\*_lighting.exr md .\lighting | move *_lighting.exr .\lighting
if exist .\*_normals.exr md .\normals | move *_normals.exr .\normals
if exist .\*_raw.exr md .\raw | move *_raw.exr .\raw
if exist .\*_reflection.exr md .\reflection | move *_reflection.exr .\reflection
if exist .\*_refraction.exr md .\refraction | move *_refraction.exr .\refraction
if exist .\*_shadow.exr md .\shadow | move *_shadow.exr .\shadow
if exist .\*_clown.png md .\clown | move *_clown.png .\clown
This may save some seconds of work?!
Cheers
Marco