hi !
i would like to perform a test after rendering an animation in order to check if all the frames were computed ...
i would like to make some loop with the "filetest" command
for($i=$startFrame;$i{
$fileToTest = $filename + $i + $extension;
if(!filetest -f $fileToTest
)
{
print($fileToTest );
}
}
is there a command or a tip in order to pad the filename i am going to pass to "filetest" ?
something like :
$fileToTest = $filename + padd($i, $pad) + $extension;
with $pad = the number of zero i want
thanx in advance
b