AppserverIo\Appserver\Core\Api\AbstractService::getSystemTmpDir PHP Method

getSystemTmpDir() public method

Return's the system's temporary directory.
public getSystemTmpDir ( string $relativePathToAppend = '' ) : string
$relativePathToAppend string A relative path to append
return string The system's temporary directory
    public function getSystemTmpDir($relativePathToAppend = '')
    {
        return $this->realpath($this->makePathAbsolute($this->getSystemConfiguration()->getParam(DirectoryKeys::TMP) . $this->makePathAbsolute($relativePathToAppend)));
    }