Store class using directories and files on a standard file system.
Details
DirectoryStore for Zarr
Public fields
root
The path to the root of the store.
Methods
Inherited methods
Method new()
Create a new file system store.
Arguments
root
The path to the root of the store.
Returns
A new DirectoryStore
object.
Method get_item()
Get an item from the store.
Usage
DirectoryStore$get_item(key)
Returns
The item data in a vector of type raw.
Method set_item()
Set an item in the store.
Usage
DirectoryStore$set_item(key, value)
Arguments
key
The item key.
value
The item value as a vector of type raw.
Method contains_item()
Determine whether the store contains an item.
Usage
DirectoryStore$contains_item(key)
Method rmdir()
remove a path within a Store
Usage
DirectoryStore$rmdir(path = NA)
Method listdir()
list the store directory
Usage
DirectoryStore$listdir(key = NA)
Method clone()
The objects of this class are cloneable with this method.
Usage
DirectoryStore$clone(deep = FALSE)
Arguments
deep
Whether to make a deep clone.