When I run zarr.open('result.zarr', mode='r')
I get the following error:
FSPathExistNotDir: path exists but is not a directory: %r
According to the example in the Zarr documentation located at https://zarr.readthedocs.io/en/stable/tutorial.html#persistent-arrays, this zarr.open() function should return a zarr.core.Array:
z2 = zarr.open('data/example.zarr', mode='r')
np.all(z1[:] == z2[:])
How come the zarr.open()
function is looking for a directory in my case?