File$open
File$open(mode="r") → connection
Parameters:
Returns:
Examples
# See https://redivis.com/datasets/yz1s-d09009dbb/files for example data
t <- redivis$table("demo.example_data_files:yz1s:v1_3.example_file_types:4c10")
text_file <- t$file("pandas_core.py")
con <- text_file$open()
readLines(con)
binary_file <- t$file("bogota.tiff")
con <- binary_file$open("rb")
readBin(con)Last updated
Was this helpful?

