We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1a189e1 commit 062e194Copy full SHA for 062e194
1 file changed
src/spikeinterface/core/zarrextractors.py
@@ -74,6 +74,8 @@ def super_zarr_open(folder_path: str | Path, mode: str = "r", storage_options: d
74
except Exception as e:
75
pass
76
else:
77
+ if not Path(folder_path).is_dir():
78
+ raise ValueError(f"Folder {folder_path} does not exist")
79
for open_func in open_funcs:
80
try:
81
root = open_func(str(folder_path), mode=mode, storage_options=storage_options)
0 commit comments