Directory$mount
Last updated
Was this helpful?
Mounts the virtual directory on disk, without initially download files. Files will then be loaded incrementally as accessed – similar to how cloud-synced files exist in Google Drive, Dropbox, etc.
This method doesn't currently work within the free-tier Redivis notebooks, but is available within custom notebook VMs.
This method requires libfuse to be installed. This comes standard in many Linux distributions, but may need to be installed through your package manager. If you are running in a Docker environment, or under certain security restrictions, you may need to take additional steps to enable libfuse.
path : str
The mount path for the directory. Will automatically create any subdirectories as needed. If not specified, will be mounted as a subfolder within the current working directory.
void
dir <- redivis$table("table_ref")$to_directory()
# All files are now (instantaneously!) available on the local filesystem, though they
# will need to be downloaded as they are accessed.
dir$mount("/scratch/files")
Last updated
Was this helpful?
Was this helpful?

