Lifespan of Task.getTemporaryDir()

I just want to confirm that the directory returned from Task.getTemporaryDir() is valid from configuration time through to the end of the task’s execution. Or, is it only valid during the task’s execution?

Thanks, Chris

The temporary directory will be available during configuration as well. It would not be deleted until after the task has finished executing, at the earliest.

Thanks Mark!