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
* @throws IOException
* if the base path cannot be read or does not exist,
* if the N5 version of the container is not compatible with this
* implementation.
However the constructor returns a valid N5FSReader when the basePath does not exist. This delays the error to the first read of the N5 container, instead of at construction
The text was updated successfully, but these errors were encountered:
PR #91 aligns the logic of the N5Reader with the documentation, however the current behavior allows creation of N5Reader on non-existent directories, so this is a breaking change.
The docstring for
N5FSReader
indicates that:However the constructor returns a valid
N5FSReader
when thebasePath
does not exist. This delays the error to the first read of the N5 container, instead of at constructionThe text was updated successfully, but these errors were encountered: