
Convenience function to open a group or array using file-mode-like semantics.
Source:R/creation.R
zarr_open.RdConvenience function to open a group or array using file-mode-like semantics.
Arguments
- store
A Store object, or a character string that is coerced to one: an
http://orhttps://URL becomes an HttpStore, ans3://URL becomes an S3Store, ags://URL becomes a GcsStore, and anything else is treated as a filesystem path and becomes a DirectoryStore.NAcreates a MemoryStore. Remote stores open read-only. Seevignette("remote-stores").- mode
:
'r', 'r+', 'a', 'w', 'w-', optional Persistence mode: 'r' means read only (must exist); 'r+' means read/write (must exist); 'a' means read/write (create if doesn't exist); 'w' means create (overwrite if exists); 'w-' means create (fail if exists).- path
: string, bytes, optional Path under which array is stored.
- ...
Additional arguments to pass to zarr_open_array or zarr_open_group.