# Upload$exists

### Upload$<mark style="color:purple;">exists</mark>() → bool

Check whether the upload exists.

### **Returns:**&#x20;

**bool**

### Examples

```r
dataset <- redivis$user("user_name")$dataset("dataset_name", version="next")
table <- dataset$table("table_name")

upload <- table$upload("some_file.csv")

# TRUE or FALSE, depending on whether some_file.csv exists as an upload on the table
print(upload$exists()) 
```
