This function allows you to determine the complete path to the temp directory.
Parameter |
Type |
Description |
|---|---|---|
- |
- |
- |
The function returns the complete path to the temp directory of the JobRouter installation. Example: C:\inetpub\wwwroot\jobrouter\output\temp
Please note: The Temp directory is not automatically cleaned by JobRouter. To avoid data garbage, the directory should be checked regularly or cleaned up by your own programming.
Example:
…
// Determining the path to the temp directory
$tempPath = $this->getFullTempPath();
…