BxDolCacheFile::delData PHP Method

delData() public method

Delete cache file.
public delData ( string $sKey ) : result
$sKey string - file name
return result of the operation
    function delData($sKey)
    {
        $sFile = $this->sPath . $sKey;
        return !file_exists($sFile) || @unlink($sFile);
    }