Nette\Forms\Controls\UploadControl::isFilled PHP Method

isFilled() public method

Has been any file uploaded?
public isFilled ( ) : boolean
return boolean
    public function isFilled()
    {
        return $this->value instanceof FileUpload ? $this->value->getError() !== UPLOAD_ERR_NO_FILE : (bool) $this->value;
    }