Storage.FilesystemStoreAn Eio-aware local filesystem storage backend for a Zarr v3 hierarchy.
include Zarr.Storage.S with type 'a io := 'amodule Group : sig ... endmodule Array : sig ... endval hierarchy : t -> Zarr.Node.Array.t list * Zarr.Node.Group.t listhierarchy t returns p where p is a pair of lists representing all nodes in store t. The first element of the pair is a list of all array nodes, and the second element is a list of all group nodes. This operation returns a pair of empty lists if store t is empty.
val clear : t -> unitclear t clears the store t by deleting all nodes. If the store is already empty, this is a no-op.
val create :
?perm:Eio.File.Unix_perm.t ->
env:< fs : Eio.Fs.dir_ty Eio.Path.t.. > ->
string ->
tcreate ~perm ~env dir returns a new filesystem store.
val open_store :
?perm:Eio.File.Unix_perm.t ->
env:< fs : Eio.Fs.dir_ty Eio.Path.t.. > ->
string ->
topen_store ~perm ~env dir returns an existing filesystem Zarr store.