You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When writing array data to a nested path, I get a FileNotFoundError for the file that is supposed to be written. This is because the parent directory does not exist, althoug fsspec should create it when needed. This is especially a problem with zarr (e.g. 2.16.1) which does something like the following:
When writing array data to a nested path, I get a FileNotFoundError for the file that is supposed to be written. This is because the parent directory does not exist, althoug fsspec should create it when needed. This is especially a problem with
zarr
(e.g. 2.16.1) which does something like the following:mapper["/tmp/example.zarr/s0/0/0"] = bytes([0, 100])
still creates the directories.fsspec==2023.9.0
but works withfsspec==2023.6.0
The text was updated successfully, but these errors were encountered: