Getting job's scene file name?

Is there a way to get a job’s submitted scene file name? I can’t seem to find this property or method in the documentation.

I need this to get the actual submitted scene file name in order to strip it down and use it in my auto submission event plugins for other scene files.

Thanks a lot in advance, cheers…

Under the plugin scripting section, check out the “Rendering Information Functions”:

string GetDataFilename() Returns the path of the scene file that was submitted with the job.

string parse “GetDataFilename()” to get just the scene filename

or you could parse the .job files to grab anything you want. There’s an example in my “DJVQuicktimeGen.py” event plugin.

HTH,
MIke

Nice! Thanks a lot, Mike!