Theme_model::is_really_writable PHP Method

is_really_writable() public method

Check if a file is writable.
public is_really_writable ( $file ) : boolean
return boolean
    public function is_really_writable($file)
    {
        $this->load->helper('file');
        if (!is_really_writable($file)) {
            if (!write_file($file, '', 'w')) {
                return FALSE;
            }
        }
        return TRUE;
    }