Prado\IO\TTarFileExtractor::_cleanFile PHP Метод

_cleanFile() приватный Метод

private _cleanFile ( )
    private function _cleanFile()
    {
        $this->_close();
        // ----- Look for a local copy
        if ($this->_temp_tarname != '') {
            // ----- Remove the local copy but not the remote tarname
            @unlink($this->_temp_tarname);
            $this->_temp_tarname = '';
        } else {
            // ----- Remove the local tarname file
            @unlink($this->_tarname);
        }
        $this->_tarname = '';
        return true;
    }