Do you know how to get the location of the frames created by a render? In this case, I am dealing with a Maya render.
For some reason JobOutputFileNames is coming back empty:
outputFiles = list(job.JobOutputFileNames)
print "Output files %s" % outputFiles
JobFrames and JobFramesList do not return paths.
You can get the output directory (or directories).
outputDirs = list(job.JobOutputDirectories)
print outputDirs
This returns the value in the Output Folder field, which is a path to the images folder. Unfortunately, the frames are located in a folder inside of ‘images’. I can probably query the Maya scene file, but I am hoping that to avoid that.